We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 345e5d7 commit 6cb9097Copy full SHA for 6cb9097
internal/comp/inputFile.go
@@ -137,6 +137,11 @@ func (fc InputFile) DownloadUrl(value string) InputFile {
137
return fc.set("downloadUrl", value)
138
}
139
140
+// UseChunk sets whether to use chunk upload. true | false | "auto"
141
+func (fc InputFile) UseChunk(value any) InputFile {
142
+ return fc.set("useChunk", value)
143
+}
144
+
145
// Drag sets whether drag-and-drop upload is enabled.
146
func (fc InputFile) Drag(value bool) InputFile {
147
return fc.set("drag", value)
0 commit comments