commonMain.aws.sdk.kotlin.services.personalizeruntime.model.GetRecommendationsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personalizeruntime-jvm Show documentation
Show all versions of personalizeruntime-jvm Show documentation
The AWS SDK for Kotlin client for Personalize Runtime
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.personalizeruntime.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetRecommendationsResponse private constructor(builder: Builder) {
/**
* A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 items in the list.
*/
public val itemList: List? = builder.itemList
/**
* The ID of the recommendation.
*/
public val recommendationId: kotlin.String? = builder.recommendationId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalizeruntime.model.GetRecommendationsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetRecommendationsResponse(")
append("itemList=$itemList,")
append("recommendationId=$recommendationId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = itemList?.hashCode() ?: 0
result = 31 * result + (recommendationId?.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 (itemList != other.itemList) return false
if (recommendationId != other.recommendationId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalizeruntime.model.GetRecommendationsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 items in the list.
*/
public var itemList: List? = null
/**
* The ID of the recommendation.
*/
public var recommendationId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalizeruntime.model.GetRecommendationsResponse) : this() {
this.itemList = x.itemList
this.recommendationId = x.recommendationId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalizeruntime.model.GetRecommendationsResponse = GetRecommendationsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}