commonMain.aws.sdk.kotlin.services.omics.model.ExportReadSetDetail.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omics-jvm Show documentation
Show all versions of omics-jvm Show documentation
The AWS SDK for Kotlin client for Omics
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.omics.model
/**
* Details about a read set.
*/
public class ExportReadSetDetail private constructor(builder: Builder) {
/**
* The set's ID.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
/**
* The set's status.
*/
public val status: aws.sdk.kotlin.services.omics.model.ReadSetExportJobItemStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
/**
* The set's status message.
*/
public val statusMessage: kotlin.String? = builder.statusMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.omics.model.ExportReadSetDetail = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ExportReadSetDetail(")
append("id=$id,")
append("status=$status,")
append("statusMessage=$statusMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = id.hashCode()
result = 31 * result + (status.hashCode())
result = 31 * result + (statusMessage?.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 ExportReadSetDetail
if (id != other.id) return false
if (status != other.status) return false
if (statusMessage != other.statusMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.omics.model.ExportReadSetDetail = Builder(this).apply(block).build()
public class Builder {
/**
* The set's ID.
*/
public var id: kotlin.String? = null
/**
* The set's status.
*/
public var status: aws.sdk.kotlin.services.omics.model.ReadSetExportJobItemStatus? = null
/**
* The set's status message.
*/
public var statusMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.omics.model.ExportReadSetDetail) : this() {
this.id = x.id
this.status = x.status
this.statusMessage = x.statusMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.omics.model.ExportReadSetDetail = ExportReadSetDetail(this)
internal fun correctErrors(): Builder {
if (id == null) id = ""
if (status == null) status = ReadSetExportJobItemStatus.SdkUnknown("no value provided")
return this
}
}
}