commonMain.aws.sdk.kotlin.services.iotfleetwise.model.CanInterface.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 single controller area network (CAN) device interface.
*/
public class CanInterface private constructor(builder: Builder) {
/**
* The unique name of the interface.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
/**
* The name of the communication protocol for the interface.
*/
public val protocolName: kotlin.String? = builder.protocolName
/**
* The version of the communication protocol for the interface.
*/
public val protocolVersion: kotlin.String? = builder.protocolVersion
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotfleetwise.model.CanInterface = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CanInterface(")
append("name=$name,")
append("protocolName=$protocolName,")
append("protocolVersion=$protocolVersion")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name.hashCode()
result = 31 * result + (protocolName?.hashCode() ?: 0)
result = 31 * result + (protocolVersion?.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 CanInterface
if (name != other.name) return false
if (protocolName != other.protocolName) return false
if (protocolVersion != other.protocolVersion) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotfleetwise.model.CanInterface = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique name of the interface.
*/
public var name: kotlin.String? = null
/**
* The name of the communication protocol for the interface.
*/
public var protocolName: kotlin.String? = null
/**
* The version of the communication protocol for the interface.
*/
public var protocolVersion: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotfleetwise.model.CanInterface) : this() {
this.name = x.name
this.protocolName = x.protocolName
this.protocolVersion = x.protocolVersion
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotfleetwise.model.CanInterface = CanInterface(this)
internal fun correctErrors(): Builder {
if (name == null) name = ""
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy