commonMain.aws.sdk.kotlin.services.bedrockagent.model.DeletePromptResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeletePromptResponse private constructor(builder: Builder) {
/**
* The unique identifier of the prompt that was deleted.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
/**
* The version of the prompt that was deleted.
*/
public val version: kotlin.String? = builder.version
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.DeletePromptResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeletePromptResponse(")
append("id=$id,")
append("version=$version")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = id.hashCode()
result = 31 * result + (version?.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 DeletePromptResponse
if (id != other.id) return false
if (version != other.version) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.DeletePromptResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of the prompt that was deleted.
*/
public var id: kotlin.String? = null
/**
* The version of the prompt that was deleted.
*/
public var version: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.DeletePromptResponse) : this() {
this.id = x.id
this.version = x.version
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.DeletePromptResponse = DeletePromptResponse(this)
internal fun correctErrors(): Builder {
if (id == null) id = ""
return this
}
}
}