commonMain.aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedError.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
/**
* An error occurred when creating a recommendation.
*/
public class NotifyRecommendationsReceivedError private constructor(builder: Builder) {
/**
* A recommendation is causing an error.
*/
public val message: kotlin.String? = builder.message
/**
* The identifier of the recommendation that is in error.
*/
public val recommendationId: kotlin.String? = builder.recommendationId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedError = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("NotifyRecommendationsReceivedError(")
append("message=$message,")
append("recommendationId=$recommendationId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = message?.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 NotifyRecommendationsReceivedError
if (message != other.message) return false
if (recommendationId != other.recommendationId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedError = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A recommendation is causing an error.
*/
public var message: kotlin.String? = null
/**
* The identifier of the recommendation that is in error.
*/
public var recommendationId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedError) : this() {
this.message = x.message
this.recommendationId = x.recommendationId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wisdom.model.NotifyRecommendationsReceivedError = NotifyRecommendationsReceivedError(this)
internal fun correctErrors(): Builder {
return this
}
}
}