We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753f612 commit b4ace83Copy full SHA for b4ace83
Test.ServiceInterface/FileUploadServices.cs
@@ -8,7 +8,7 @@ public class FileUploadServices : Service
8
{
9
public object Any(SpeechToText request)
10
11
-
+
12
if (Request?.Files == null || Request.Files.Length == 0)
13
14
throw new ArgumentNullException(nameof(request.Audio));
@@ -24,7 +24,7 @@ public object Any(SpeechToText request)
24
new() { Text = $"{nameof(request.Tag)} {request.Tag}" },
25
new() { Text = $"{nameof(request.RefId)} {request.RefId}" },
26
];
27
28
return to;
29
}
30
@@ -50,7 +50,12 @@ public object Any(TestFileUploads request)
50
ContentType = file.ContentType,
51
});
52
53
54
55
56
57
+ public object Any(TestUploadWithDto request)
58
+ {
59
+ return request;
60
+ }
61
0 commit comments