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 0890434 commit db1c592Copy full SHA for db1c592
Storage/FileOptions.cs
@@ -1,4 +1,5 @@
1
-using Newtonsoft.Json;
+using System.Collections.Generic;
2
+using Newtonsoft.Json;
3
4
namespace Supabase.Storage
5
{
@@ -12,5 +13,14 @@ public class FileOptions
12
13
14
[JsonProperty("upsert")]
15
public bool Upsert { get; set; }
16
+
17
+ [JsonProperty("duplex")]
18
+ public string? Duplex { get; set; }
19
20
+ [JsonProperty("metadata")]
21
+ public Dictionary<string, string>? Metadata { get; set; }
22
23
+ [JsonProperty("headers")]
24
+ public Dictionary<string, string>? Headers { get; set; }
25
}
26
0 commit comments