Module Values.DocumentAttributeConfigurationSource

Configuration information for document attributes. Document attributes are metadata or fields associated with your documents. For example, the company department name associated with each document. For more information, see Understanding document attributes.

Sourcetype nonrec t = {
  1. name : DocumentMetadataConfigurationName.t option;
    (*

    The name of the document attribute.

    *)
  2. type_ : AttributeType.t option;
    (*

    The type of document attribute.

    *)
  3. search : Status.t option;
    (*

    Information about whether the document attribute can be used by an end user to search for information on their web experience.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?search:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DocumentMetadataConfigurationName.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