Module Values.UserInfoSource

Information about the user who made a specified commit.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the user who made the specified commit.

    *)
  2. email : Email.t option;
    (*

    The email address associated with the user who made the commit, if any.

    *)
  3. date : Date.t option;
    (*

    The date when the specified commit was commited, in timestamp format with GMT offset.

    *)
}
Sourceval make : ?name:??? -> ?email:??? -> ?date:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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