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

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

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

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



/**
 * An object representing the properties of a table in a workbook.
 */
public class Table private constructor(builder: Builder) {
    /**
     * The id of the table.
     */
    public val tableId: kotlin.String? = builder.tableId
    /**
     * The name of the table.
     */
    public val tableName: kotlin.String? = builder.tableName

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

    override fun toString(): kotlin.String = buildString {
        append("Table(")
        append("tableId=$tableId,")
        append("tableName=$tableName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = tableId?.hashCode() ?: 0
        result = 31 * result + (tableName?.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 Table

        if (tableId != other.tableId) return false
        if (tableName != other.tableName) return false

        return true
    }

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

    public class Builder {
        /**
         * The id of the table.
         */
        public var tableId: kotlin.String? = null
        /**
         * The name of the table.
         */
        public var tableName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.honeycode.model.Table) : this() {
            this.tableId = x.tableId
            this.tableName = x.tableName
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy