commonMain.aws.sdk.kotlin.services.omics.model.FileInformation.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
/**
* Details about a file.
*/
public class FileInformation private constructor(builder: Builder) {
/**
* The file's content length.
*/
public val contentLength: kotlin.Long? = builder.contentLength
/**
* The file's part size.
*/
public val partSize: kotlin.Long? = builder.partSize
/**
* The file's total parts.
*/
public val totalParts: kotlin.Int? = builder.totalParts
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.omics.model.FileInformation = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("FileInformation(")
append("contentLength=$contentLength,")
append("partSize=$partSize,")
append("totalParts=$totalParts")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = contentLength?.hashCode() ?: 0
result = 31 * result + (partSize?.hashCode() ?: 0)
result = 31 * result + (totalParts ?: 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 FileInformation
if (contentLength != other.contentLength) return false
if (partSize != other.partSize) return false
if (totalParts != other.totalParts) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.omics.model.FileInformation = Builder(this).apply(block).build()
public class Builder {
/**
* The file's content length.
*/
public var contentLength: kotlin.Long? = null
/**
* The file's part size.
*/
public var partSize: kotlin.Long? = null
/**
* The file's total parts.
*/
public var totalParts: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.omics.model.FileInformation) : this() {
this.contentLength = x.contentLength
this.partSize = x.partSize
this.totalParts = x.totalParts
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.omics.model.FileInformation = FileInformation(this)
internal fun correctErrors(): Builder {
return this
}
}
}