Values.FileUploadCardInputSourceRepresents a file upload card. It can optionally receive a filename and fileId to set a default file. If not received, the user must provide the file when the Q App runs.
type nonrec t = {title : Title.t;The title or label of the file upload card.
*)id : UUID.t;The unique identifier of the file upload card.
*)type_ : CardType.t;The type of the card.
*)filename : Filename.t option;The default filename to use for the file upload card.
*)fileId : UUID.t option;The identifier of a pre-uploaded file associated with the card.
*)allowOverride : Boolean.t option;A flag indicating if the user can override the default file for the upload card.
*)}val make :
?filename:??? ->
?fileId:??? ->
?allowOverride:??? ->
title:Title.t ->
id:UUID.t ->
type_:CardType.t ->
unit ->
t