commonMain.aws.sdk.kotlin.services.omics.model.GetReadSetResponse.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
import aws.smithy.kotlin.runtime.content.ByteStream
public class GetReadSetResponse private constructor(builder: Builder) {
/**
* The read set file payload.
*/
public val payload: aws.smithy.kotlin.runtime.content.ByteStream? = builder.payload
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.omics.model.GetReadSetResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetReadSetResponse(")
append("payload=$payload")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = payload?.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 GetReadSetResponse
if (payload != other.payload) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.omics.model.GetReadSetResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The read set file payload.
*/
public var payload: aws.smithy.kotlin.runtime.content.ByteStream? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.omics.model.GetReadSetResponse) : this() {
this.payload = x.payload
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.omics.model.GetReadSetResponse = GetReadSetResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}