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

commonMain.aws.sdk.kotlin.services.tnb.model.GetSolNetworkPackageContentResponse.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.tnb.model

import aws.smithy.kotlin.runtime.SdkDsl

public class GetSolNetworkPackageContentResponse private constructor(builder: Builder) {
    /**
     * Indicates the media type of the resource.
     */
    public val contentType: aws.sdk.kotlin.services.tnb.model.PackageContentType? = builder.contentType
    /**
     * Content of the network service descriptor in the network package.
     */
    public val nsdContent: kotlin.ByteArray? = builder.nsdContent

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

    override fun toString(): kotlin.String = buildString {
        append("GetSolNetworkPackageContentResponse(")
        append("contentType=$contentType,")
        append("nsdContent=$nsdContent")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = contentType?.hashCode() ?: 0
        result = 31 * result + (nsdContent?.contentHashCode() ?: 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 GetSolNetworkPackageContentResponse

        if (contentType != other.contentType) return false
        if (nsdContent != null) {
            if (other.nsdContent == null) return false
            if (!nsdContent.contentEquals(other.nsdContent)) return false
        } else if (other.nsdContent != null) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Indicates the media type of the resource.
         */
        public var contentType: aws.sdk.kotlin.services.tnb.model.PackageContentType? = null
        /**
         * Content of the network service descriptor in the network package.
         */
        public var nsdContent: kotlin.ByteArray? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.tnb.model.GetSolNetworkPackageContentResponse) : this() {
            this.contentType = x.contentType
            this.nsdContent = x.nsdContent
        }

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

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy