Module Values.CreateProjectRequestSource

Creates a project in a specified space.

Sourcetype nonrec t = {
  1. spaceName : NameString.t;
    (*

    The name of the space.

    *)
  2. displayName : ProjectDisplayName.t;
    (*

    The friendly name of the project that will be displayed to users.

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

    The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> spaceName:NameString.t -> displayName:ProjectDisplayName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NameString.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