commonMain.aws.sdk.kotlin.services.iotsitewise.model.ExecuteQueryResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotsitewise-jvm Show documentation
Show all versions of iotsitewise-jvm Show documentation
The AWS SDK for Kotlin client for IoTSiteWise
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotsitewise.model
import aws.smithy.kotlin.runtime.SdkDsl
public class ExecuteQueryResponse private constructor(builder: Builder) {
/**
* Represents a single column in the query results.
*/
public val columns: List? = builder.columns
/**
* 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.iotsitewise.model.ExecuteQueryResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ExecuteQueryResponse(")
append("columns=$columns,")
append("nextToken=$nextToken,")
append("rows=$rows")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = columns?.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 (columns != other.columns) 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.iotsitewise.model.ExecuteQueryResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Represents a single column in the query results.
*/
public var columns: 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.iotsitewise.model.ExecuteQueryResponse) : this() {
this.columns = x.columns
this.nextToken = x.nextToken
this.rows = x.rows
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotsitewise.model.ExecuteQueryResponse = ExecuteQueryResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy