Module Values.TemplateShareSummarySource

Summary of a review template share.

Sourcetype nonrec t = {
  1. shareId : ShareId.t option;
  2. sharedWith : SharedWith.t option;
  3. status : ShareStatus.t option;
  4. statusMessage : StatusMessage.t option;
    (*

    Review template share invitation status message.

    *)
}
Sourceval make : ?shareId:??? -> ?sharedWith:??? -> ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ShareId.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