-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc 0.1.0, Speakeasy CLI 1.112.1
- Loading branch information
1 parent
329fa5d
commit 480b526
Showing
210 changed files
with
4,021 additions
and
308 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResHeaders.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace SDK.Models.Operations | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class RequestBodyPostFormSimpleResHeaders | ||
{ | ||
|
||
[JsonProperty("Content-Type")] | ||
public string ContentType { get; set; } = default!; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace SDK.Models.Operations | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class RequestBodyPutMultipartSimpleResHeaders | ||
{ | ||
|
||
[JsonProperty("Content-Type")] | ||
public string ContentType { get; set; } = default!; | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalRes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace SDK.Models.Operations | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// OK | ||
/// </summary> | ||
public class UnionBigIntDecimalRes | ||
{ | ||
|
||
[JsonProperty("json")] | ||
public object Json { get; set; } = default!; | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace SDK.Models.Operations | ||
{ | ||
using System.Net.Http; | ||
using System; | ||
|
||
public class UnionBigIntDecimalResponse | ||
{ | ||
|
||
/// <summary> | ||
/// HTTP response content type for this operation | ||
/// </summary> | ||
public string? ContentType { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// HTTP response status code for this operation | ||
/// </summary> | ||
public int StatusCode { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// Raw HTTP response; suitable for custom response parsing | ||
/// </summary> | ||
public HttpResponseMessage? RawResponse { get; set; } | ||
|
||
/// <summary> | ||
/// OK | ||
/// </summary> | ||
public UnionBigIntDecimalRes? Res { get; set; } | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntRes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace SDK.Models.Operations | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// OK | ||
/// </summary> | ||
public class UnionDateTimeBigIntRes | ||
{ | ||
|
||
[JsonProperty("json")] | ||
public object Json { get; set; } = default!; | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace SDK.Models.Operations | ||
{ | ||
using System.Net.Http; | ||
using System; | ||
|
||
public class UnionDateTimeBigIntResponse | ||
{ | ||
|
||
/// <summary> | ||
/// HTTP response content type for this operation | ||
/// </summary> | ||
public string? ContentType { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// HTTP response status code for this operation | ||
/// </summary> | ||
public int StatusCode { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// Raw HTTP response; suitable for custom response parsing | ||
/// </summary> | ||
public HttpResponseMessage? RawResponse { get; set; } | ||
|
||
/// <summary> | ||
/// OK | ||
/// </summary> | ||
public UnionDateTimeBigIntRes? Res { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.