DatasetResponse

data class DatasetResponse(val schema: SchemaResponse? = null, val iceberg: IcebergResponse? = null, val pulsar: PulsarResponse? = null)

Represents a response containing dataset information.

Constructors

Link copied to clipboard
constructor(schema: SchemaResponse, iceberg: IcebergResponse)

Secondary constructor for creating a dataset response with a schema and Iceberg response.

constructor(schema: SchemaResponse, pulsar: PulsarResponse?)

Secondary constructor for creating a dataset response with a schema and Pulsar response.

constructor(schema: SchemaResponse? = null, iceberg: IcebergResponse? = null, pulsar: PulsarResponse? = null)

Properties

Link copied to clipboard

The Iceberg response for the dataset.

Link copied to clipboard
val pulsar: PulsarResponse? = null

The Pulsar response for the dataset.

Link copied to clipboard
val schema: SchemaResponse? = null

The schema response for the dataset.