
commonMain.aws.sdk.kotlin.services.iottwinmaker.model.RelationshipValue.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iottwinmaker.model
/**
* A value that associates a component and an entity.
*/
public class RelationshipValue private constructor(builder: Builder) {
/**
* The name of the target component associated with the relationship value.
*/
public val targetComponentName: kotlin.String? = builder.targetComponentName
/**
* The ID of the target entity associated with this relationship value.
*/
public val targetEntityId: kotlin.String? = builder.targetEntityId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iottwinmaker.model.RelationshipValue = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RelationshipValue(")
append("targetComponentName=$targetComponentName,")
append("targetEntityId=$targetEntityId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = targetComponentName?.hashCode() ?: 0
result = 31 * result + (targetEntityId?.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 RelationshipValue
if (targetComponentName != other.targetComponentName) return false
if (targetEntityId != other.targetEntityId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iottwinmaker.model.RelationshipValue = Builder(this).apply(block).build()
public class Builder {
/**
* The name of the target component associated with the relationship value.
*/
public var targetComponentName: kotlin.String? = null
/**
* The ID of the target entity associated with this relationship value.
*/
public var targetEntityId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iottwinmaker.model.RelationshipValue) : this() {
this.targetComponentName = x.targetComponentName
this.targetEntityId = x.targetEntityId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iottwinmaker.model.RelationshipValue = RelationshipValue(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy