commonMain.aws.sdk.kotlin.services.qconnect.model.SearchContentResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qconnect-jvm Show documentation
Show all versions of qconnect-jvm Show documentation
The AWS SDK for Kotlin client for QConnect
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.qconnect.model
import aws.smithy.kotlin.runtime.SdkDsl
public class SearchContentResponse private constructor(builder: Builder) {
/**
* Summary information about the content.
*/
public val contentSummaries: List = requireNotNull(builder.contentSummaries) { "A non-null value must be provided for contentSummaries" }
/**
* If there are additional results, this is the token for the next set of results.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.qconnect.model.SearchContentResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SearchContentResponse(")
append("contentSummaries=$contentSummaries,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = contentSummaries.hashCode()
result = 31 * result + (nextToken?.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 SearchContentResponse
if (contentSummaries != other.contentSummaries) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.qconnect.model.SearchContentResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Summary information about the content.
*/
public var contentSummaries: List? = null
/**
* If there are additional results, this is the token for the next set of results.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.qconnect.model.SearchContentResponse) : this() {
this.contentSummaries = x.contentSummaries
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.qconnect.model.SearchContentResponse = SearchContentResponse(this)
internal fun correctErrors(): Builder {
if (contentSummaries == null) contentSummaries = emptyList()
return this
}
}
}