Module Values.FileDetailSource

Represents detailed information about a file attached to a benefit application.

Sourcetype nonrec t = {
  1. fileURI : FileURI.t option;
    (*

    The URI or location where the file is stored.

    *)
  2. businessUseCase : String_.t option;
    (*

    The business purpose or use case that this file supports in the benefit application.

    *)
  3. fileName : FileDetailFileNameString.t option;
    (*

    The original name of the uploaded file.

    *)
  4. fileStatus : FileDetailFileStatusString.t option;
    (*

    The current processing status of the file (e.g., uploaded, processing, approved, rejected).

    *)
  5. fileStatusReason : String_.t option;
    (*

    The reason for that particulat file status.

    *)
  6. fileType : FileType.t option;
    (*

    The type or category of the file (e.g., document, image, spreadsheet).

    *)
  7. createdBy : FileDetailCreatedByString.t option;
    (*

    The identifier of the user who uploaded the file.

    *)
  8. createdAt : Timestamp.t option;
    (*

    The timestamp when the file was uploaded.

    *)
}
Sourceval make : ?fileURI:??? -> ?businessUseCase:??? -> ?fileName:??? -> ?fileStatus:??? -> ?fileStatusReason:??? -> ?fileType:??? -> ?createdBy:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FileURI.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t