Module Values.FileInputSource

Represents input information for uploading a file to a benefit application.

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

    The URI or location where the file should be stored or has been uploaded.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?businessUseCase:??? -> fileURI:FileURI.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FileURI.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