Module Values.MetadataSource

Metadata and other file information.

Sourcetype nonrec t = {
  1. eTag : string option;
    (*

    The entity tag (ETag) of the file.

    *)
  2. fileSize : Awso.Import.Int64.t option;
    (*

    The size of the media file, in bytes.

    *)
  3. lastModified : string option;
    (*

    The last modification timestamp of the media file, in Unix time.

    *)
  4. mimeType : string option;
    (*

    The MIME type of the media file.

    *)
}
Sourceval make : ?eTag:??? -> ?fileSize:??? -> ?lastModified:??? -> ?mimeType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string | `Timestamp of string ]) 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