Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ public class AnyOfJsonConverter<T1, T2> : global::System.Text.Json.Serialization
{
}

var result = new global::AssemblyAI.AnyOf<T1, T2>(
var __value = new global::AssemblyAI.AnyOf<T1, T2>(
value1,

value2
);

Expand All @@ -57,7 +58,7 @@ public class AnyOfJsonConverter<T1, T2> : global::System.Text.Json.Serialization
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class LemurActionItemsParamsJsonConverter : global::System.Text.Json.Seri
{
}

var result = new global::AssemblyAI.LemurActionItemsParams(
var __value = new global::AssemblyAI.LemurActionItemsParams(
value1,

value2
);

Expand All @@ -58,7 +59,7 @@ public class LemurActionItemsParamsJsonConverter : global::System.Text.Json.Seri
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class LemurActionItemsResponseJsonConverter : global::System.Text.Json.Se
{
}

var result = new global::AssemblyAI.LemurActionItemsResponse(
var __value = new global::AssemblyAI.LemurActionItemsResponse(
@string
);

Expand All @@ -39,7 +39,7 @@ public class LemurActionItemsResponseJsonConverter : global::System.Text.Json.Se
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class LemurQuestionAnswerParamsJsonConverter : global::System.Text.Json.S
{
}

var result = new global::AssemblyAI.LemurQuestionAnswerParams(
var __value = new global::AssemblyAI.LemurQuestionAnswerParams(
value1,

value2
);

Expand All @@ -58,7 +59,7 @@ public class LemurQuestionAnswerParamsJsonConverter : global::System.Text.Json.S
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class LemurQuestionAnswerResponseJsonConverter : global::System.Text.Json
{
}

var result = new global::AssemblyAI.LemurQuestionAnswerResponse(
var __value = new global::AssemblyAI.LemurQuestionAnswerResponse(
value1,

value2
);

Expand All @@ -58,7 +59,7 @@ public class LemurQuestionAnswerResponseJsonConverter : global::System.Text.Json
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class LemurResponseJsonConverter : global::System.Text.Json.Serialization
{
}

var result = new global::AssemblyAI.LemurResponse(
var __value = new global::AssemblyAI.LemurResponse(
@string,

questionAnswer
);

Expand All @@ -58,7 +59,7 @@ public class LemurResponseJsonConverter : global::System.Text.Json.Serialization
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class LemurStringResponseJsonConverter : global::System.Text.Json.Seriali
{
}

var result = new global::AssemblyAI.LemurStringResponse(
var __value = new global::AssemblyAI.LemurStringResponse(
value1,

value2
);

Expand All @@ -58,7 +59,7 @@ public class LemurStringResponseJsonConverter : global::System.Text.Json.Seriali
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class LemurSummaryParamsJsonConverter : global::System.Text.Json.Serializ
{
}

var result = new global::AssemblyAI.LemurSummaryParams(
var __value = new global::AssemblyAI.LemurSummaryParams(
value1,

value2
);

Expand All @@ -58,7 +59,7 @@ public class LemurSummaryParamsJsonConverter : global::System.Text.Json.Serializ
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class LemurSummaryResponseJsonConverter : global::System.Text.Json.Serial
{
}

var result = new global::AssemblyAI.LemurSummaryResponse(
var __value = new global::AssemblyAI.LemurSummaryResponse(
@string
);

Expand All @@ -39,7 +39,7 @@ public class LemurSummaryResponseJsonConverter : global::System.Text.Json.Serial
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class LemurTaskParamsJsonConverter : global::System.Text.Json.Serializati
{
}

var result = new global::AssemblyAI.LemurTaskParams(
var __value = new global::AssemblyAI.LemurTaskParams(
value1
);

Expand All @@ -39,7 +39,7 @@ public class LemurTaskParamsJsonConverter : global::System.Text.Json.Serializati
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class LemurTaskResponseJsonConverter : global::System.Text.Json.Serializa
{
}

var result = new global::AssemblyAI.LemurTaskResponse(
var __value = new global::AssemblyAI.LemurTaskResponse(
@string
);

Expand All @@ -39,7 +39,7 @@ public class LemurTaskResponseJsonConverter : global::System.Text.Json.Serializa
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ public class OneOfJsonConverter<T1, T2> : global::System.Text.Json.Serialization
{
}

var result = new global::AssemblyAI.OneOf<T1, T2>(
var __value = new global::AssemblyAI.OneOf<T1, T2>(
value1,

value2
);

Expand All @@ -57,7 +58,7 @@ public class OneOfJsonConverter<T1, T2> : global::System.Text.Json.Serialization
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@ public class OneOfJsonConverter<T1, T2, T3> : global::System.Text.Json.Serializa
{
}

var result = new global::AssemblyAI.OneOf<T1, T2, T3>(
var __value = new global::AssemblyAI.OneOf<T1, T2, T3>(
value1,

value2,

value3
);

Expand All @@ -76,7 +78,7 @@ public class OneOfJsonConverter<T1, T2, T3> : global::System.Text.Json.Serializa
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class RedactedAudioNotificationJsonConverter : global::System.Text.Json.S
{
}

var result = new global::AssemblyAI.RedactedAudioNotification(
var __value = new global::AssemblyAI.RedactedAudioNotification(
response
);

Expand All @@ -39,7 +39,7 @@ public class RedactedAudioNotificationJsonConverter : global::System.Text.Json.S
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class TranscriptParamsJsonConverter : global::System.Text.Json.Serializat
{
}

var result = new global::AssemblyAI.TranscriptParams(
var __value = new global::AssemblyAI.TranscriptParams(
value1,

value2
);

Expand All @@ -58,7 +59,7 @@ public class TranscriptParamsJsonConverter : global::System.Text.Json.Serializat
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public class TranscriptWebhookNotificationJsonConverter : global::System.Text.Js
{
}

var result = new global::AssemblyAI.TranscriptWebhookNotification(
var __value = new global::AssemblyAI.TranscriptWebhookNotification(
ready,

redactedAudio
);

Expand All @@ -58,7 +59,7 @@ public class TranscriptWebhookNotificationJsonConverter : global::System.Text.Js
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}

return result;
return __value;
}

/// <inheritdoc />
Expand Down
Loading