commonMain.aws.sdk.kotlin.services.qldb.model.GetBlockResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qldb-jvm Show documentation
Show all versions of qldb-jvm Show documentation
The AWS SDK for Kotlin client for QLDB
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.qldb.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetBlockResponse private constructor(builder: Builder) {
/**
* The block data object in Amazon Ion format.
*/
public val block: aws.sdk.kotlin.services.qldb.model.ValueHolder? = builder.block
/**
* The proof object in Amazon Ion format returned by a `GetBlock` request. A proof contains the list of hash values required to recalculate the specified digest using a Merkle tree, starting with the specified block.
*/
public val proof: aws.sdk.kotlin.services.qldb.model.ValueHolder? = builder.proof
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.qldb.model.GetBlockResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetBlockResponse(")
append("block=*** Sensitive Data Redacted ***,")
append("proof=*** Sensitive Data Redacted ***")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = block?.hashCode() ?: 0
result = 31 * result + (proof?.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 GetBlockResponse
if (block != other.block) return false
if (proof != other.proof) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.qldb.model.GetBlockResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The block data object in Amazon Ion format.
*/
public var block: aws.sdk.kotlin.services.qldb.model.ValueHolder? = null
/**
* The proof object in Amazon Ion format returned by a `GetBlock` request. A proof contains the list of hash values required to recalculate the specified digest using a Merkle tree, starting with the specified block.
*/
public var proof: aws.sdk.kotlin.services.qldb.model.ValueHolder? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.qldb.model.GetBlockResponse) : this() {
this.block = x.block
this.proof = x.proof
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.qldb.model.GetBlockResponse = GetBlockResponse(this)
/**
* construct an [aws.sdk.kotlin.services.qldb.model.ValueHolder] inside the given [block]
*/
public fun block(block: aws.sdk.kotlin.services.qldb.model.ValueHolder.Builder.() -> kotlin.Unit) {
this.block = aws.sdk.kotlin.services.qldb.model.ValueHolder.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.qldb.model.ValueHolder] inside the given [block]
*/
public fun proof(block: aws.sdk.kotlin.services.qldb.model.ValueHolder.Builder.() -> kotlin.Unit) {
this.proof = aws.sdk.kotlin.services.qldb.model.ValueHolder.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}