commonMain.aws.sdk.kotlin.services.personalizeruntime.model.GetActionRecommendationsResponse.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 GetActionRecommendationsResponse private constructor(builder: Builder) {
/**
* A list of action recommendations sorted in descending order by prediction score. There can be a maximum of 100 actions in the list. For information about action scores, see [How action recommendation scoring works](https://docs.aws.amazon.com/personalize/latest/dg/how-action-recommendation-scoring-works.html).
*/
public val actionList: List? = builder.actionList
/**
* 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.GetActionRecommendationsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetActionRecommendationsResponse(")
append("actionList=$actionList,")
append("recommendationId=$recommendationId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = actionList?.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 GetActionRecommendationsResponse
if (actionList != other.actionList) return false
if (recommendationId != other.recommendationId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalizeruntime.model.GetActionRecommendationsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of action recommendations sorted in descending order by prediction score. There can be a maximum of 100 actions in the list. For information about action scores, see [How action recommendation scoring works](https://docs.aws.amazon.com/personalize/latest/dg/how-action-recommendation-scoring-works.html).
*/
public var actionList: 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.GetActionRecommendationsResponse) : this() {
this.actionList = x.actionList
this.recommendationId = x.recommendationId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalizeruntime.model.GetActionRecommendationsResponse = GetActionRecommendationsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}