
commonMain.aws.sdk.kotlin.services.iottwinmaker.model.ExecuteQueryResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iottwinmaker.model
public class ExecuteQueryResponse private constructor(builder: Builder) {
/**
* A list of ColumnDescription objects.
*/
public val columnDescriptions: List? = builder.columnDescriptions
/**
* The string that specifies the next page of results.
*/
public val nextToken: kotlin.String? = builder.nextToken
/**
* Represents a single row in the query results.
*/
public val rows: List? = builder.rows
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iottwinmaker.model.ExecuteQueryResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ExecuteQueryResponse(")
append("columnDescriptions=$columnDescriptions,")
append("nextToken=$nextToken,")
append("rows=$rows")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = columnDescriptions?.hashCode() ?: 0
result = 31 * result + (nextToken?.hashCode() ?: 0)
result = 31 * result + (rows?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as ExecuteQueryResponse
if (columnDescriptions != other.columnDescriptions) return false
if (nextToken != other.nextToken) return false
if (rows != other.rows) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iottwinmaker.model.ExecuteQueryResponse = Builder(this).apply(block).build()
public class Builder {
/**
* A list of ColumnDescription objects.
*/
public var columnDescriptions: List? = null
/**
* The string that specifies the next page of results.
*/
public var nextToken: kotlin.String? = null
/**
* Represents a single row in the query results.
*/
public var rows: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iottwinmaker.model.ExecuteQueryResponse) : this() {
this.columnDescriptions = x.columnDescriptions
this.nextToken = x.nextToken
this.rows = x.rows
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iottwinmaker.model.ExecuteQueryResponse = ExecuteQueryResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy