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

commonMain.aws.sdk.kotlin.services.codecatalyst.model.DeleteProjectResponse.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.codecatalyst.model

import aws.smithy.kotlin.runtime.SdkDsl

public class DeleteProjectResponse private constructor(builder: Builder) {
    /**
     * The friendly name displayed to users of the project in Amazon CodeCatalyst.
     */
    public val displayName: kotlin.String? = builder.displayName
    /**
     * The name of the project in the space.
     */
    public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
    /**
     * The name of the space.
     */
    public val spaceName: kotlin.String = requireNotNull(builder.spaceName) { "A non-null value must be provided for spaceName" }

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codecatalyst.model.DeleteProjectResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("DeleteProjectResponse(")
        append("displayName=$displayName,")
        append("name=$name,")
        append("spaceName=$spaceName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = displayName?.hashCode() ?: 0
        result = 31 * result + (name.hashCode())
        result = 31 * result + (spaceName.hashCode())
        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 DeleteProjectResponse

        if (displayName != other.displayName) return false
        if (name != other.name) return false
        if (spaceName != other.spaceName) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codecatalyst.model.DeleteProjectResponse = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The friendly name displayed to users of the project in Amazon CodeCatalyst.
         */
        public var displayName: kotlin.String? = null
        /**
         * The name of the project in the space.
         */
        public var name: kotlin.String? = null
        /**
         * The name of the space.
         */
        public var spaceName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.codecatalyst.model.DeleteProjectResponse) : this() {
            this.displayName = x.displayName
            this.name = x.name
            this.spaceName = x.spaceName
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.codecatalyst.model.DeleteProjectResponse = DeleteProjectResponse(this)

        internal fun correctErrors(): Builder {
            if (name == null) name = ""
            if (spaceName == null) spaceName = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy