ProjectList.Projects
type t = {
friendlyName : string; | (* A descriptive name for this project. *) |
id : string; | (* An opaque ID of this project. *) |
kind : string; | (* The resource type. *) |
numericId : string; | (* The numeric ID of this project. *) |
projectReference : ProjectReference.t; | (* A unique reference to this project. *) |
}
val friendlyName : ( t, string ) GapiLens.t
val id : ( t, string ) GapiLens.t
val kind : ( t, string ) GapiLens.t
val numericId : ( t, string ) GapiLens.t
val projectReference : ( t, ProjectReference.t ) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t