commonMain.aws.sdk.kotlin.services.iotwireless.model.GetWirelessGatewayTaskResponse.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 GetWirelessGatewayTaskResponse 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
/**
* The status of the request.
*/
public val status: aws.sdk.kotlin.services.iotwireless.model.WirelessGatewayTaskStatus? = builder.status
/**
* The date and time when the task was created.
*/
public val taskCreatedAt: kotlin.String? = builder.taskCreatedAt
/**
* The ID of the wireless gateway.
*/
public val wirelessGatewayId: kotlin.String? = builder.wirelessGatewayId
/**
* The ID of the WirelessGatewayTask.
*/
public val wirelessGatewayTaskDefinitionId: kotlin.String? = builder.wirelessGatewayTaskDefinitionId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.GetWirelessGatewayTaskResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetWirelessGatewayTaskResponse(")
append("lastUplinkReceivedAt=$lastUplinkReceivedAt,")
append("status=$status,")
append("taskCreatedAt=$taskCreatedAt,")
append("wirelessGatewayId=$wirelessGatewayId,")
append("wirelessGatewayTaskDefinitionId=$wirelessGatewayTaskDefinitionId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lastUplinkReceivedAt?.hashCode() ?: 0
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (taskCreatedAt?.hashCode() ?: 0)
result = 31 * result + (wirelessGatewayId?.hashCode() ?: 0)
result = 31 * result + (wirelessGatewayTaskDefinitionId?.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 GetWirelessGatewayTaskResponse
if (lastUplinkReceivedAt != other.lastUplinkReceivedAt) return false
if (status != other.status) return false
if (taskCreatedAt != other.taskCreatedAt) return false
if (wirelessGatewayId != other.wirelessGatewayId) return false
if (wirelessGatewayTaskDefinitionId != other.wirelessGatewayTaskDefinitionId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotwireless.model.GetWirelessGatewayTaskResponse = 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
/**
* The status of the request.
*/
public var status: aws.sdk.kotlin.services.iotwireless.model.WirelessGatewayTaskStatus? = null
/**
* The date and time when the task was created.
*/
public var taskCreatedAt: kotlin.String? = null
/**
* The ID of the wireless gateway.
*/
public var wirelessGatewayId: kotlin.String? = null
/**
* The ID of the WirelessGatewayTask.
*/
public var wirelessGatewayTaskDefinitionId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.GetWirelessGatewayTaskResponse) : this() {
this.lastUplinkReceivedAt = x.lastUplinkReceivedAt
this.status = x.status
this.taskCreatedAt = x.taskCreatedAt
this.wirelessGatewayId = x.wirelessGatewayId
this.wirelessGatewayTaskDefinitionId = x.wirelessGatewayTaskDefinitionId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotwireless.model.GetWirelessGatewayTaskResponse = GetWirelessGatewayTaskResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy