commonMain.aws.sdk.kotlin.services.iotwireless.model.GetWirelessDeviceStatisticsResponse.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
public class GetWirelessDeviceStatisticsResponse private constructor(builder: Builder) {
/**
* The date and time when the most recent uplink was received.
*
* This value is only valid for 3 months.
*/
public val lastUplinkReceivedAt: kotlin.String? = builder.lastUplinkReceivedAt
/**
* Information about the wireless device's operations.
*/
public val loRaWan: aws.sdk.kotlin.services.iotwireless.model.LoRaWanDeviceMetadata? = builder.loRaWan
/**
* MetaData for Sidewalk device.
*/
public val sidewalk: aws.sdk.kotlin.services.iotwireless.model.SidewalkDeviceMetadata? = builder.sidewalk
/**
* The ID of the wireless device.
*/
public val wirelessDeviceId: kotlin.String? = builder.wirelessDeviceId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.GetWirelessDeviceStatisticsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetWirelessDeviceStatisticsResponse(")
append("lastUplinkReceivedAt=$lastUplinkReceivedAt,")
append("loRaWan=$loRaWan,")
append("sidewalk=$sidewalk,")
append("wirelessDeviceId=$wirelessDeviceId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lastUplinkReceivedAt?.hashCode() ?: 0
result = 31 * result + (loRaWan?.hashCode() ?: 0)
result = 31 * result + (sidewalk?.hashCode() ?: 0)
result = 31 * result + (wirelessDeviceId?.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 GetWirelessDeviceStatisticsResponse
if (lastUplinkReceivedAt != other.lastUplinkReceivedAt) return false
if (loRaWan != other.loRaWan) return false
if (sidewalk != other.sidewalk) return false
if (wirelessDeviceId != other.wirelessDeviceId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotwireless.model.GetWirelessDeviceStatisticsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The date and time when the most recent uplink was received.
*
* This value is only valid for 3 months.
*/
public var lastUplinkReceivedAt: kotlin.String? = null
/**
* Information about the wireless device's operations.
*/
public var loRaWan: aws.sdk.kotlin.services.iotwireless.model.LoRaWanDeviceMetadata? = null
/**
* MetaData for Sidewalk device.
*/
public var sidewalk: aws.sdk.kotlin.services.iotwireless.model.SidewalkDeviceMetadata? = null
/**
* The ID of the wireless device.
*/
public var wirelessDeviceId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.GetWirelessDeviceStatisticsResponse) : this() {
this.lastUplinkReceivedAt = x.lastUplinkReceivedAt
this.loRaWan = x.loRaWan
this.sidewalk = x.sidewalk
this.wirelessDeviceId = x.wirelessDeviceId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotwireless.model.GetWirelessDeviceStatisticsResponse = GetWirelessDeviceStatisticsResponse(this)
/**
* construct an [aws.sdk.kotlin.services.iotwireless.model.LoRaWanDeviceMetadata] inside the given [block]
*/
public fun loRaWan(block: aws.sdk.kotlin.services.iotwireless.model.LoRaWanDeviceMetadata.Builder.() -> kotlin.Unit) {
this.loRaWan = aws.sdk.kotlin.services.iotwireless.model.LoRaWanDeviceMetadata.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.iotwireless.model.SidewalkDeviceMetadata] inside the given [block]
*/
public fun sidewalk(block: aws.sdk.kotlin.services.iotwireless.model.SidewalkDeviceMetadata.Builder.() -> kotlin.Unit) {
this.sidewalk = aws.sdk.kotlin.services.iotwireless.model.SidewalkDeviceMetadata.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy