commonMain.aws.sdk.kotlin.services.wisdom.model.CreateAssistantAssociationResponse.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 CreateAssistantAssociationResponse private constructor(builder: Builder) {
/**
* The assistant association.
*/
public val assistantAssociation: aws.sdk.kotlin.services.wisdom.model.AssistantAssociationData? = builder.assistantAssociation
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wisdom.model.CreateAssistantAssociationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateAssistantAssociationResponse(")
append("assistantAssociation=$assistantAssociation")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = assistantAssociation?.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 CreateAssistantAssociationResponse
if (assistantAssociation != other.assistantAssociation) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wisdom.model.CreateAssistantAssociationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The assistant association.
*/
public var assistantAssociation: aws.sdk.kotlin.services.wisdom.model.AssistantAssociationData? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wisdom.model.CreateAssistantAssociationResponse) : this() {
this.assistantAssociation = x.assistantAssociation
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wisdom.model.CreateAssistantAssociationResponse = CreateAssistantAssociationResponse(this)
/**
* construct an [aws.sdk.kotlin.services.wisdom.model.AssistantAssociationData] inside the given [block]
*/
public fun assistantAssociation(block: aws.sdk.kotlin.services.wisdom.model.AssistantAssociationData.Builder.() -> kotlin.Unit) {
this.assistantAssociation = aws.sdk.kotlin.services.wisdom.model.AssistantAssociationData.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}