Values.FileDetailSourceRepresents detailed information about a file attached to a benefit application.
type nonrec t = {fileURI : FileURI.t option;The URI or location where the file is stored.
*)businessUseCase : String_.t option;The business purpose or use case that this file supports in the benefit application.
*)fileName : FileDetailFileNameString.t option;The original name of the uploaded file.
*)fileStatus : FileDetailFileStatusString.t option;The current processing status of the file (e.g., uploaded, processing, approved, rejected).
*)fileStatusReason : String_.t option;The reason for that particulat file status.
*)fileType : FileType.t option;The type or category of the file (e.g., document, image, spreadsheet).
*)createdBy : FileDetailCreatedByString.t option;The identifier of the user who uploaded the file.
*)createdAt : Timestamp.t option;The timestamp when the file was uploaded.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of FileURI.t
| `Timestamp of Timestamp.t ])
list ]