IcebergPartitionSpecResponse

data class IcebergPartitionSpecResponse(val index: Int? = null, val type: String? = null, val column: String? = null, val name: String? = null)

Represents a response containing information about an Iceberg partition specification.

Constructors

Link copied to clipboard
constructor(index: Int? = null, type: String? = null, column: String? = null, name: String? = null)

Properties

Link copied to clipboard
val column: String? = null

The column used for partitioning.

Link copied to clipboard
val index: Int? = null

The index of the partition specification.

Link copied to clipboard
val name: String? = null

The name of the partition specification.

Link copied to clipboard
val type: String? = null

The type of partitioning used.