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

commonMain.aws.sdk.kotlin.services.honeycode.model.ColumnMetadata.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.honeycode.model



/**
 * Metadata for column in the table.
 */
public class ColumnMetadata private constructor(builder: Builder) {
    /**
     * The format of the column.
     */
    public val format: aws.sdk.kotlin.services.honeycode.model.Format = requireNotNull(builder.format) { "A non-null value must be provided for format" }
    /**
     * The name of the column.
     */
    public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }

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

    override fun toString(): kotlin.String = buildString {
        append("ColumnMetadata(")
        append("format=$format,")
        append("name=*** Sensitive Data Redacted ***")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = format.hashCode()
        result = 31 * result + (name.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 ColumnMetadata

        if (format != other.format) return false
        if (name != other.name) return false

        return true
    }

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

    public class Builder {
        /**
         * The format of the column.
         */
        public var format: aws.sdk.kotlin.services.honeycode.model.Format? = null
        /**
         * The name of the column.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.honeycode.model.ColumnMetadata) : this() {
            this.format = x.format
            this.name = x.name
        }

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

        internal fun correctErrors(): Builder {
            if (format == null) format = Format.SdkUnknown("no value provided")
            if (name == null) name = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy