Module Values.VeevaSourcePropertiesSource

The properties that are applied when using Veeva as a flow source.

Sourcetype nonrec t = {
  1. object_ : Object.t;
    (*

    The object specified in the Veeva flow source.

    *)
  2. documentType : DocumentType.t option;
    (*

    The document type specified in the Veeva document extract flow.

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

    Boolean value to include source files in Veeva document extract flow.

    *)
  4. includeRenditions : Boolean.t option;
    (*

    Boolean value to include file renditions in Veeva document extract flow.

    *)
  5. includeAllVersions : Boolean.t option;
    (*

    Boolean value to include All Versions of files in Veeva document extract flow.

    *)
}
Sourceval context_ : string
Sourceval make : ?documentType:??? -> ?includeSourceFiles:??? -> ?includeRenditions:??? -> ?includeAllVersions:??? -> object_:Object.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of Object.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