All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.personalizeruntime.model.GetActionRecommendationsResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// 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
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy