Module Values.FormEntryOutputSource

The details of the form entry.

Sourcetype nonrec t = {
  1. typeName : FormTypeName.t option;
    (*

    The name of the type of the form entry.

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

    The type revision of the form entry.

    *)
  3. required : Boolean.t option;
    (*

    Specifies whether a form entry is required.

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