commonMain.aws.sdk.kotlin.services.iotfleetwise.model.InvalidSignalDecoder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotfleetwise-jvm Show documentation
Show all versions of iotfleetwise-jvm Show documentation
The AWS SDK for Kotlin client for IoTFleetWise
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotfleetwise.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A reason that a signal decoder isn't valid.
*/
public class InvalidSignalDecoder private constructor(builder: Builder) {
/**
* The possible cause for the invalid signal decoder.
*/
public val hint: kotlin.String? = builder.hint
/**
* The name of a signal decoder that isn't valid.
*/
public val name: kotlin.String? = builder.name
/**
* A message about why the signal decoder isn't valid.
*/
public val reason: aws.sdk.kotlin.services.iotfleetwise.model.SignalDecoderFailureReason? = builder.reason
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotfleetwise.model.InvalidSignalDecoder = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InvalidSignalDecoder(")
append("hint=$hint,")
append("name=$name,")
append("reason=$reason")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = hint?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (reason?.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 InvalidSignalDecoder
if (hint != other.hint) return false
if (name != other.name) return false
if (reason != other.reason) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotfleetwise.model.InvalidSignalDecoder = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The possible cause for the invalid signal decoder.
*/
public var hint: kotlin.String? = null
/**
* The name of a signal decoder that isn't valid.
*/
public var name: kotlin.String? = null
/**
* A message about why the signal decoder isn't valid.
*/
public var reason: aws.sdk.kotlin.services.iotfleetwise.model.SignalDecoderFailureReason? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotfleetwise.model.InvalidSignalDecoder) : this() {
this.hint = x.hint
this.name = x.name
this.reason = x.reason
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotfleetwise.model.InvalidSignalDecoder = InvalidSignalDecoder(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy