commonMain.aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedRequest.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 NotifyRecommendationsReceivedRequest private constructor(builder: Builder) {
/**
* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public val assistantId: kotlin.String = requireNotNull(builder.assistantId) { "A non-null value must be provided for assistantId" }
/**
* The identifiers of the recommendations.
*/
public val recommendationIds: List = requireNotNull(builder.recommendationIds) { "A non-null value must be provided for recommendationIds" }
/**
* The identifier of the session. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public val sessionId: kotlin.String = requireNotNull(builder.sessionId) { "A non-null value must be provided for sessionId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("NotifyRecommendationsReceivedRequest(")
append("assistantId=$assistantId,")
append("recommendationIds=$recommendationIds,")
append("sessionId=$sessionId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = assistantId.hashCode()
result = 31 * result + (recommendationIds.hashCode())
result = 31 * result + (sessionId.hashCode())
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 NotifyRecommendationsReceivedRequest
if (assistantId != other.assistantId) return false
if (recommendationIds != other.recommendationIds) return false
if (sessionId != other.sessionId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public var assistantId: kotlin.String? = null
/**
* The identifiers of the recommendations.
*/
public var recommendationIds: List? = null
/**
* The identifier of the session. Can be either the ID or the ARN. URLs cannot contain the ARN.
*/
public var sessionId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedRequest) : this() {
this.assistantId = x.assistantId
this.recommendationIds = x.recommendationIds
this.sessionId = x.sessionId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedRequest = NotifyRecommendationsReceivedRequest(this)
internal fun correctErrors(): Builder {
if (assistantId == null) assistantId = ""
if (recommendationIds == null) recommendationIds = emptyList()
if (sessionId == null) sessionId = ""
return this
}
}
}