Module Values.FormOutputSource

The details of a metadata form.

Sourcetype nonrec t = {
  1. formName : FormName.t option;
    (*

    The name of the metadata form.

    *)
  2. typeName : FormTypeName.t option;
    (*

    The name of the metadata form type.

    *)
  3. typeRevision : Revision.t option;
    (*

    The revision of the metadata form type.

    *)
  4. content : String_.t option;
    (*

    The content of the metadata form.

    *)
}
Sourceval make : ?formName:??? -> ?typeName:??? -> ?typeRevision:??? -> ?content:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FormName.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