commonMain.aws.sdk.kotlin.services.omics.model.ActivateReadSetSourceItem.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
/**
* A source for a read set activation job.
*/
public class ActivateReadSetSourceItem private constructor(builder: Builder) {
/**
* The source's read set ID.
*/
public val readSetId: kotlin.String = requireNotNull(builder.readSetId) { "A non-null value must be provided for readSetId" }
/**
* The source's status.
*/
public val status: aws.sdk.kotlin.services.omics.model.ReadSetActivationJobItemStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
/**
* The source'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.ActivateReadSetSourceItem = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ActivateReadSetSourceItem(")
append("readSetId=$readSetId,")
append("status=$status,")
append("statusMessage=$statusMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = readSetId.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 ActivateReadSetSourceItem
if (readSetId != other.readSetId) 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.ActivateReadSetSourceItem = Builder(this).apply(block).build()
public class Builder {
/**
* The source's read set ID.
*/
public var readSetId: kotlin.String? = null
/**
* The source's status.
*/
public var status: aws.sdk.kotlin.services.omics.model.ReadSetActivationJobItemStatus? = null
/**
* The source's status message.
*/
public var statusMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.omics.model.ActivateReadSetSourceItem) : this() {
this.readSetId = x.readSetId
this.status = x.status
this.statusMessage = x.statusMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.omics.model.ActivateReadSetSourceItem = ActivateReadSetSourceItem(this)
internal fun correctErrors(): Builder {
if (readSetId == null) readSetId = ""
if (status == null) status = ReadSetActivationJobItemStatus.SdkUnknown("no value provided")
return this
}
}
}