commonMain.aws.sdk.kotlin.services.iotwireless.model.GlobalIdentity.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
/**
* Global identity information.
*/
public class GlobalIdentity private constructor(builder: Builder) {
/**
* GERAN (GSM EDGE Radio Access Network) cell global identifier.
*/
public val geranCid: kotlin.Int = requireNotNull(builder.geranCid) { "A non-null value must be provided for geranCid" }
/**
* Location area code of the global identity.
*/
public val lac: kotlin.Int = requireNotNull(builder.lac) { "A non-null value must be provided for lac" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.GlobalIdentity = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GlobalIdentity(")
append("geranCid=$geranCid,")
append("lac=$lac")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = geranCid
result = 31 * result + (lac)
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 GlobalIdentity
if (geranCid != other.geranCid) return false
if (lac != other.lac) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotwireless.model.GlobalIdentity = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* GERAN (GSM EDGE Radio Access Network) cell global identifier.
*/
public var geranCid: kotlin.Int? = null
/**
* Location area code of the global identity.
*/
public var lac: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.GlobalIdentity) : this() {
this.geranCid = x.geranCid
this.lac = x.lac
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotwireless.model.GlobalIdentity = GlobalIdentity(this)
internal fun correctErrors(): Builder {
if (geranCid == null) geranCid = 0
if (lac == null) lac = 0
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy