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

commonMain.aws.sdk.kotlin.services.bedrockruntime.model.ImageBlock.kt Maven / Gradle / Ivy

There is a newer version: 1.3.80
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.bedrockruntime.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Image content for a message.
 */
public class ImageBlock private constructor(builder: Builder) {
    /**
     * The format of the image.
     */
    public val format: aws.sdk.kotlin.services.bedrockruntime.model.ImageFormat = requireNotNull(builder.format) { "A non-null value must be provided for format" }
    /**
     * The source for the image.
     */
    public val source: aws.sdk.kotlin.services.bedrockruntime.model.ImageSource? = builder.source

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

    override fun toString(): kotlin.String = buildString {
        append("ImageBlock(")
        append("format=$format,")
        append("source=$source")
        append(")")
    }

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

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

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The format of the image.
         */
        public var format: aws.sdk.kotlin.services.bedrockruntime.model.ImageFormat? = null
        /**
         * The source for the image.
         */
        public var source: aws.sdk.kotlin.services.bedrockruntime.model.ImageSource? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.bedrockruntime.model.ImageBlock) : this() {
            this.format = x.format
            this.source = x.source
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy