XmlReadSettingsResponse

data class XmlReadSettingsResponse(val compressionProperties: Any? = null, val detectDataType: Any? = null, val namespacePrefixes: Any? = null, val namespaces: Any? = null, val type: String, val validationMode: Any? = null)

Xml read settings.

Constructors

Link copied to clipboard
constructor(compressionProperties: Any? = null, detectDataType: Any? = null, namespacePrefixes: Any? = null, namespaces: Any? = null, type: String, validationMode: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Compression settings.

Link copied to clipboard
val detectDataType: Any? = null

Indicates whether type detection is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).

Link copied to clipboard
val namespacePrefixes: Any? = null

Namespace uri to prefix mappings to override the prefixes in column names when namespace is enabled, if no prefix is defined for a namespace uri, the prefix of xml element/attribute name in the xml data file will be used. Example: "{"http://www.example.com/xml":"prefix"}" Type: object (or Expression with resultType object).

Link copied to clipboard
val namespaces: Any? = null

Indicates whether namespace is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).

Link copied to clipboard

The read setting type. Expected value is 'XmlReadSettings'.

Link copied to clipboard
val validationMode: Any? = null

Indicates what validation method is used when reading the xml files. Allowed values: 'none', 'xsd', or 'dtd'. Type: string (or Expression with resultType string).