commonMain.aws.sdk.kotlin.services.omics.model.UpdateAnnotationStoreResponse.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.time.Instant
public class UpdateAnnotationStoreResponse private constructor(builder: Builder) {
/**
* When the store was created.
*/
public val creationTime: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.creationTime) { "A non-null value must be provided for creationTime" }
/**
* The store's description.
*/
public val description: kotlin.String = requireNotNull(builder.description) { "A non-null value must be provided for description" }
/**
* The store's ID.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
/**
* The store's name.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
/**
* The store's genome reference.
*/
public val reference: aws.sdk.kotlin.services.omics.model.ReferenceItem? = builder.reference
/**
* The store's status.
*/
public val status: aws.sdk.kotlin.services.omics.model.StoreStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
/**
* The annotation file format of the store.
*/
public val storeFormat: aws.sdk.kotlin.services.omics.model.StoreFormat? = builder.storeFormat
/**
* Parsing options for the store.
*/
public val storeOptions: aws.sdk.kotlin.services.omics.model.StoreOptions? = builder.storeOptions
/**
* When the store was updated.
*/
public val updateTime: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.updateTime) { "A non-null value must be provided for updateTime" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.omics.model.UpdateAnnotationStoreResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateAnnotationStoreResponse(")
append("creationTime=$creationTime,")
append("description=$description,")
append("id=$id,")
append("name=$name,")
append("reference=$reference,")
append("status=$status,")
append("storeFormat=$storeFormat,")
append("storeOptions=$storeOptions,")
append("updateTime=$updateTime")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = creationTime.hashCode()
result = 31 * result + (description.hashCode())
result = 31 * result + (id.hashCode())
result = 31 * result + (name.hashCode())
result = 31 * result + (reference?.hashCode() ?: 0)
result = 31 * result + (status.hashCode())
result = 31 * result + (storeFormat?.hashCode() ?: 0)
result = 31 * result + (storeOptions?.hashCode() ?: 0)
result = 31 * result + (updateTime.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 UpdateAnnotationStoreResponse
if (creationTime != other.creationTime) return false
if (description != other.description) return false
if (id != other.id) return false
if (name != other.name) return false
if (reference != other.reference) return false
if (status != other.status) return false
if (storeFormat != other.storeFormat) return false
if (storeOptions != other.storeOptions) return false
if (updateTime != other.updateTime) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.omics.model.UpdateAnnotationStoreResponse = Builder(this).apply(block).build()
public class Builder {
/**
* When the store was created.
*/
public var creationTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The store's description.
*/
public var description: kotlin.String? = null
/**
* The store's ID.
*/
public var id: kotlin.String? = null
/**
* The store's name.
*/
public var name: kotlin.String? = null
/**
* The store's genome reference.
*/
public var reference: aws.sdk.kotlin.services.omics.model.ReferenceItem? = null
/**
* The store's status.
*/
public var status: aws.sdk.kotlin.services.omics.model.StoreStatus? = null
/**
* The annotation file format of the store.
*/
public var storeFormat: aws.sdk.kotlin.services.omics.model.StoreFormat? = null
/**
* Parsing options for the store.
*/
public var storeOptions: aws.sdk.kotlin.services.omics.model.StoreOptions? = null
/**
* When the store was updated.
*/
public var updateTime: aws.smithy.kotlin.runtime.time.Instant? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.omics.model.UpdateAnnotationStoreResponse) : this() {
this.creationTime = x.creationTime
this.description = x.description
this.id = x.id
this.name = x.name
this.reference = x.reference
this.status = x.status
this.storeFormat = x.storeFormat
this.storeOptions = x.storeOptions
this.updateTime = x.updateTime
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.omics.model.UpdateAnnotationStoreResponse = UpdateAnnotationStoreResponse(this)
internal fun correctErrors(): Builder {
if (creationTime == null) creationTime = Instant.fromEpochSeconds(0)
if (description == null) description = ""
if (id == null) id = ""
if (name == null) name = ""
if (status == null) status = StoreStatus.SdkUnknown("no value provided")
if (updateTime == null) updateTime = Instant.fromEpochSeconds(0)
return this
}
}
}