commonMain.aws.sdk.kotlin.services.omics.model.CreateWorkflowResponse.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
public class CreateWorkflowResponse private constructor(builder: Builder) {
/**
* The workflow's ARN.
*/
public val arn: kotlin.String? = builder.arn
/**
* The workflow's ID.
*/
public val id: kotlin.String? = builder.id
/**
* The workflow's status.
*/
public val status: aws.sdk.kotlin.services.omics.model.WorkflowStatus? = builder.status
/**
* The workflow's tags.
*/
public val tags: Map? = builder.tags
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.omics.model.CreateWorkflowResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateWorkflowResponse(")
append("arn=$arn,")
append("id=$id,")
append("status=$status,")
append("tags=$tags")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (id?.hashCode() ?: 0)
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (tags?.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 CreateWorkflowResponse
if (arn != other.arn) return false
if (id != other.id) return false
if (status != other.status) return false
if (tags != other.tags) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.omics.model.CreateWorkflowResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The workflow's ARN.
*/
public var arn: kotlin.String? = null
/**
* The workflow's ID.
*/
public var id: kotlin.String? = null
/**
* The workflow's status.
*/
public var status: aws.sdk.kotlin.services.omics.model.WorkflowStatus? = null
/**
* The workflow's tags.
*/
public var tags: Map? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.omics.model.CreateWorkflowResponse) : this() {
this.arn = x.arn
this.id = x.id
this.status = x.status
this.tags = x.tags
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.omics.model.CreateWorkflowResponse = CreateWorkflowResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}