Module Values.ProjectProfileSummarySource

The summary of a project profile.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The domain ID of the project profile.

    *)
  2. id : ProjectProfileId.t option;
    (*

    The ID of the project profile.

    *)
  3. name : ProjectProfileName.t option;
    (*

    The name of a project profile.

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

    The description of the project profile.

    *)
  5. status : Status.t option;
    (*

    The status of a project profile.

    *)
  6. createdBy : CreatedBy.t option;
    (*

    The user who created the project profile.

    *)
  7. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp of when the project profile was created.

    *)
  8. lastUpdatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp at which a project profile was last updated.

    *)
  9. domainUnitId : DomainUnitId.t option;
    (*

    The domain unit ID of the project profile.

    *)
}
Sourceval make : ?domainId:??? -> ?id:??? -> ?name:??? -> ?description:??? -> ?status:??? -> ?createdBy:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?domainUnitId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.t | `Timestamp of SyntheticTimestamp_date_time.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