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.
2 parents 2a1f11b + ea52b8b commit af99902Copy full SHA for af99902
sharp/content/repository/Client.cs
@@ -186,7 +186,11 @@ public async Task<IReadOnlyList<long>> SimilarSearch(long videoId)
186
public record RequestBody(
187
[property: JsonPropertyName("id")] long Id,
188
[property: JsonPropertyName("attributesToRetrieve")] string[] AttributesToRetrieve,
189
- [property: JsonPropertyName("limit")] int Limit = 10);
+ [property: JsonPropertyName("limit")] int Limit = 10)
190
+{
191
+ [JsonPropertyName("embedder")] public string Embedder => "default";
192
+}
193
+
194
195
public record Response()
196
{
0 commit comments