commonMain.aws.sdk.kotlin.services.wisdom.model.GetRecommendationsResponse.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 GetRecommendationsResponse private constructor(builder: Builder) {
/**
* The recommendations.
*/
public val recommendations: List = requireNotNull(builder.recommendations) { "A non-null value must be provided for recommendations" }
/**
* The triggers corresponding to recommendations.
*/
public val triggers: List? = builder.triggers
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wisdom.model.GetRecommendationsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetRecommendationsResponse(")
append("recommendations=$recommendations,")
append("triggers=$triggers")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = recommendations.hashCode()
result = 31 * result + (triggers?.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 GetRecommendationsResponse
if (recommendations != other.recommendations) return false
if (triggers != other.triggers) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wisdom.model.GetRecommendationsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The recommendations.
*/
public var recommendations: List? = null
/**
* The triggers corresponding to recommendations.
*/
public var triggers: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wisdom.model.GetRecommendationsResponse) : this() {
this.recommendations = x.recommendations
this.triggers = x.triggers
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wisdom.model.GetRecommendationsResponse = GetRecommendationsResponse(this)
internal fun correctErrors(): Builder {
if (recommendations == null) recommendations = emptyList()
return this
}
}
}