Module Values.ProjectSummarySource

Contains project summary information.

Sourcetype nonrec t = {
  1. id : ID.t option;
    (*

    The ID of the project.

    *)
  2. name : Name.t option;
    (*

    The name of the project.

    *)
  3. description : Description.t option;
    (*

    The project's description.

    *)
  4. creationDate : Timestamp.t option;
    (*

    The date the project was created, in Unix epoch time.

    *)
  5. lastUpdateDate : Timestamp.t option;
    (*

    The date the project was last updated, in Unix epoch time.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?creationDate:??? -> ?lastUpdateDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ID.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