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

commonMain.aws.sdk.kotlin.services.datazone.model.FormEntryOutput.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.datazone.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The details of the form entry.
 */
public class FormEntryOutput private constructor(builder: Builder) {
    /**
     * Specifies whether a form entry is required.
     */
    public val required: kotlin.Boolean? = builder.required
    /**
     * The name of the type of the form entry.
     */
    public val typeName: kotlin.String = requireNotNull(builder.typeName) { "A non-null value must be provided for typeName" }
    /**
     * The type revision of the form entry.
     */
    public val typeRevision: kotlin.String = requireNotNull(builder.typeRevision) { "A non-null value must be provided for typeRevision" }

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

    override fun toString(): kotlin.String = buildString {
        append("FormEntryOutput(")
        append("required=$required,")
        append("typeName=*** Sensitive Data Redacted ***,")
        append("typeRevision=$typeRevision")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = required?.hashCode() ?: 0
        result = 31 * result + (typeName.hashCode())
        result = 31 * result + (typeRevision.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 FormEntryOutput

        if (required != other.required) return false
        if (typeName != other.typeName) return false
        if (typeRevision != other.typeRevision) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Specifies whether a form entry is required.
         */
        public var required: kotlin.Boolean? = null
        /**
         * The name of the type of the form entry.
         */
        public var typeName: kotlin.String? = null
        /**
         * The type revision of the form entry.
         */
        public var typeRevision: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.datazone.model.FormEntryOutput) : this() {
            this.required = x.required
            this.typeName = x.typeName
            this.typeRevision = x.typeRevision
        }

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

        internal fun correctErrors(): Builder {
            if (typeName == null) typeName = ""
            if (typeRevision == null) typeRevision = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy