
commonMain.aws.sdk.kotlin.services.rekognition.model.CoversBodyPart.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.rekognition.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about an item of Personal Protective Equipment covering a corresponding body part. For more information, see DetectProtectiveEquipment.
*/
public class CoversBodyPart private constructor(builder: Builder) {
/**
* The confidence that Amazon Rekognition has in the value of `Value`.
*/
public val confidence: kotlin.Float? = builder.confidence
/**
* True if the PPE covers the corresponding body part, otherwise false.
*/
public val value: kotlin.Boolean = builder.value
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.rekognition.model.CoversBodyPart = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CoversBodyPart(")
append("confidence=$confidence,")
append("value=$value")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = confidence?.hashCode() ?: 0
result = 31 * result + (value.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 CoversBodyPart
if (!(confidence?.equals(other.confidence) ?: (other.confidence == null))) return false
if (value != other.value) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.rekognition.model.CoversBodyPart = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The confidence that Amazon Rekognition has in the value of `Value`.
*/
public var confidence: kotlin.Float? = null
/**
* True if the PPE covers the corresponding body part, otherwise false.
*/
public var value: kotlin.Boolean = false
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.rekognition.model.CoversBodyPart) : this() {
this.confidence = x.confidence
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.rekognition.model.CoversBodyPart = CoversBodyPart(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy