commonMain.aws.sdk.kotlin.services.iotwireless.model.SemtechGnssConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotwireless-jvm Show documentation
Show all versions of iotwireless-jvm Show documentation
The AWS Kotlin client for IoT Wireless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotwireless.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about the Semtech GNSS solver configuration.
*/
public class SemtechGnssConfiguration private constructor(builder: Builder) {
/**
* Whether forward error correction is enabled.
*/
public val fec: aws.sdk.kotlin.services.iotwireless.model.PositionConfigurationFec = requireNotNull(builder.fec) { "A non-null value must be provided for fec" }
/**
* The status indicating whether the solver is enabled.
*/
public val status: aws.sdk.kotlin.services.iotwireless.model.PositionConfigurationStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.SemtechGnssConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SemtechGnssConfiguration(")
append("fec=$fec,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = fec.hashCode()
result = 31 * result + (status.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 SemtechGnssConfiguration
if (fec != other.fec) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotwireless.model.SemtechGnssConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Whether forward error correction is enabled.
*/
public var fec: aws.sdk.kotlin.services.iotwireless.model.PositionConfigurationFec? = null
/**
* The status indicating whether the solver is enabled.
*/
public var status: aws.sdk.kotlin.services.iotwireless.model.PositionConfigurationStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.SemtechGnssConfiguration) : this() {
this.fec = x.fec
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotwireless.model.SemtechGnssConfiguration = SemtechGnssConfiguration(this)
internal fun correctErrors(): Builder {
if (fec == null) fec = PositionConfigurationFec.SdkUnknown("no value provided")
if (status == null) status = PositionConfigurationStatus.SdkUnknown("no value provided")
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy