commonMain.aws.sdk.kotlin.services.comprehend.model.DocumentMetadata.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of comprehend-jvm Show documentation
Show all versions of comprehend-jvm Show documentation
The AWS SDK for Kotlin client for Comprehend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.comprehend.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about the document, discovered during text extraction.
*/
public class DocumentMetadata private constructor(builder: Builder) {
/**
* List of pages in the document, with the number of characters extracted from each page.
*/
public val extractedCharacters: List? = builder.extractedCharacters
/**
* Number of pages in the document.
*/
public val pages: kotlin.Int? = builder.pages
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.comprehend.model.DocumentMetadata = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DocumentMetadata(")
append("extractedCharacters=$extractedCharacters,")
append("pages=$pages")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = extractedCharacters?.hashCode() ?: 0
result = 31 * result + (pages ?: 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 DocumentMetadata
if (extractedCharacters != other.extractedCharacters) return false
if (pages != other.pages) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.comprehend.model.DocumentMetadata = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* List of pages in the document, with the number of characters extracted from each page.
*/
public var extractedCharacters: List? = null
/**
* Number of pages in the document.
*/
public var pages: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.comprehend.model.DocumentMetadata) : this() {
this.extractedCharacters = x.extractedCharacters
this.pages = x.pages
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.comprehend.model.DocumentMetadata = DocumentMetadata(this)
internal fun correctErrors(): Builder {
return this
}
}
}