-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
Update internal DTOs based on the latest OpenAPI spec
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
//---------------------- | ||
// <auto-generated> | ||
// Generated using the NSwag toolchain v13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v10.0.0.0)) (http://NSwag.org) | ||
// </auto-generated> | ||
//---------------------- | ||
|
||
#nullable enable | ||
|
||
|
||
using StreamVideo.Core.InternalDTO.Requests; | ||
using StreamVideo.Core.InternalDTO.Responses; | ||
using StreamVideo.Core.InternalDTO.Models; | ||
|
||
namespace StreamVideo.Core.InternalDTO.Events | ||
{ | ||
using System = global::System; | ||
|
||
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v10.0.0.0))")] | ||
internal partial class CallEventInternalDTO | ||
{ | ||
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Always)] | ||
public string Description { get; set; } = default!; | ||
|
||
[Newtonsoft.Json.JsonProperty("end_timestamp", Required = Newtonsoft.Json.Required.Always)] | ||
public long EndTimestamp { get; set; } = default!; | ||
|
||
[Newtonsoft.Json.JsonProperty("severity", Required = Newtonsoft.Json.Required.Always)] | ||
public int Severity { get; set; } = default!; | ||
|
||
[Newtonsoft.Json.JsonProperty("timestamp", Required = Newtonsoft.Json.Required.Always)] | ||
public int Timestamp { get; set; } = default!; | ||
|
||
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.Always)] | ||
public string Type { get; set; } = default!; | ||
|
||
} | ||
|
||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,5 @@ internal partial class HealthCheckEventInternalDTO | |
|
||
} | ||
|
||
} | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
//---------------------- | ||
// <auto-generated> | ||
// Generated using the NSwag toolchain v13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v10.0.0.0)) (http://NSwag.org) | ||
// </auto-generated> | ||
//---------------------- | ||
|
||
#nullable enable | ||
|
||
|
||
using StreamVideo.Core.InternalDTO.Requests; | ||
using StreamVideo.Core.InternalDTO.Responses; | ||
using StreamVideo.Core.InternalDTO.Models; | ||
|
||
namespace StreamVideo.Core.InternalDTO.Events | ||
{ | ||
using System = global::System; | ||
|
||
/// <summary> | ||
/// This is just a placeholder for all client events | ||
/// </summary> | ||
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v10.0.0.0))")] | ||
internal partial class WSClientEventInternalDTO | ||
{ | ||
[Newtonsoft.Json.JsonProperty("connection_id", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] | ||
public string ConnectionId { get; set; } = default!; | ||
|
||
} | ||
|
||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
//---------------------- | ||
// <auto-generated> | ||
// Generated using the NSwag toolchain v13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v10.0.0.0)) (http://NSwag.org) | ||
// </auto-generated> | ||
//---------------------- | ||
|
||
#nullable enable | ||
|
||
|
||
using StreamVideo.Core.InternalDTO.Requests; | ||
using StreamVideo.Core.InternalDTO.Responses; | ||
using StreamVideo.Core.InternalDTO.Events; | ||
|
||
namespace StreamVideo.Core.InternalDTO.Models | ||
{ | ||
using System = global::System; | ||
|
||
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v10.0.0.0))")] | ||
internal partial class APNSInternalDTO | ||
{ | ||
[Newtonsoft.Json.JsonProperty("body", Required = Newtonsoft.Json.Required.Always)] | ||
public string Body { get; set; } = default!; | ||
|
||
[Newtonsoft.Json.JsonProperty("title", Required = Newtonsoft.Json.Required.Always)] | ||
public string Title { get; set; } = default!; | ||
|
||
} | ||
|
||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.