commonMain.aws.sdk.kotlin.services.wisdom.model.GetQuickResponseRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisdom-jvm Show documentation
Show all versions of wisdom-jvm Show documentation
The AWS SDK for Kotlin client for Wisdom
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wisdom.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetQuickResponseRequest private constructor(builder: Builder) {
/**
* The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base.
*/
public val knowledgeBaseId: kotlin.String? = builder.knowledgeBaseId
/**
* The identifier of the quick response.
*/
public val quickResponseId: kotlin.String? = builder.quickResponseId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wisdom.model.GetQuickResponseRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetQuickResponseRequest(")
append("knowledgeBaseId=$knowledgeBaseId,")
append("quickResponseId=$quickResponseId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = knowledgeBaseId?.hashCode() ?: 0
result = 31 * result + (quickResponseId?.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 GetQuickResponseRequest
if (knowledgeBaseId != other.knowledgeBaseId) return false
if (quickResponseId != other.quickResponseId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wisdom.model.GetQuickResponseRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base.
*/
public var knowledgeBaseId: kotlin.String? = null
/**
* The identifier of the quick response.
*/
public var quickResponseId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wisdom.model.GetQuickResponseRequest) : this() {
this.knowledgeBaseId = x.knowledgeBaseId
this.quickResponseId = x.quickResponseId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wisdom.model.GetQuickResponseRequest = GetQuickResponseRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}