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

commonMain.aws.sdk.kotlin.services.wisdom.model.GetRecommendationsResponse.kt Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy