Module Values_3.ClientDataSource

Describes the client-specific data.

Sourcetype nonrec t = {
  1. comment : Values_0.String_.t option;
    (*

    A user-defined comment about the disk upload.

    *)
  2. uploadEnd : Values_0.DateTime.t option;
    (*

    The time that the disk upload ends.

    *)
  3. uploadSize : Values_0.Double.t option;
    (*

    The size of the uploaded disk image, in GiB.

    *)
  4. uploadStart : Values_0.DateTime.t option;
    (*

    The time that the disk upload starts.

    *)
}
Sourceval make : ?comment:??? -> ?uploadEnd:??? -> ?uploadSize:??? -> ?uploadStart:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Values_0.Double.t | `String of Values_0.String_.t | `Timestamp of Values_0.DateTime.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