commonMain.aws.sdk.kotlin.services.medicalimaging.model.StartDicomImportJobResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of medicalimaging-jvm Show documentation
Show all versions of medicalimaging-jvm Show documentation
The AWS SDK for Kotlin client for Medical Imaging
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.medicalimaging.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
public class StartDicomImportJobResponse private constructor(builder: Builder) {
/**
* The data store identifier.
*/
public val datastoreId: kotlin.String = requireNotNull(builder.datastoreId) { "A non-null value must be provided for datastoreId" }
/**
* The import job identifier.
*/
public val jobId: kotlin.String = requireNotNull(builder.jobId) { "A non-null value must be provided for jobId" }
/**
* The import job status.
*/
public val jobStatus: aws.sdk.kotlin.services.medicalimaging.model.JobStatus = requireNotNull(builder.jobStatus) { "A non-null value must be provided for jobStatus" }
/**
* The timestamp when the import job was submitted.
*/
public val submittedAt: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.submittedAt) { "A non-null value must be provided for submittedAt" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.medicalimaging.model.StartDicomImportJobResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartDicomImportJobResponse(")
append("datastoreId=$datastoreId,")
append("jobId=$jobId,")
append("jobStatus=$jobStatus,")
append("submittedAt=$submittedAt")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = datastoreId.hashCode()
result = 31 * result + (jobId.hashCode())
result = 31 * result + (jobStatus.hashCode())
result = 31 * result + (submittedAt.hashCode())
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 StartDicomImportJobResponse
if (datastoreId != other.datastoreId) return false
if (jobId != other.jobId) return false
if (jobStatus != other.jobStatus) return false
if (submittedAt != other.submittedAt) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.medicalimaging.model.StartDicomImportJobResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The data store identifier.
*/
public var datastoreId: kotlin.String? = null
/**
* The import job identifier.
*/
public var jobId: kotlin.String? = null
/**
* The import job status.
*/
public var jobStatus: aws.sdk.kotlin.services.medicalimaging.model.JobStatus? = null
/**
* The timestamp when the import job was submitted.
*/
public var submittedAt: aws.smithy.kotlin.runtime.time.Instant? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.medicalimaging.model.StartDicomImportJobResponse) : this() {
this.datastoreId = x.datastoreId
this.jobId = x.jobId
this.jobStatus = x.jobStatus
this.submittedAt = x.submittedAt
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.medicalimaging.model.StartDicomImportJobResponse = StartDicomImportJobResponse(this)
internal fun correctErrors(): Builder {
if (datastoreId == null) datastoreId = ""
if (jobId == null) jobId = ""
if (jobStatus == null) jobStatus = JobStatus.SdkUnknown("no value provided")
if (submittedAt == null) submittedAt = Instant.fromEpochSeconds(0)
return this
}
}
}