All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.iotwireless.model.LoRaWanGatewayVersion.kt Maven / Gradle / Ivy

There is a newer version: 1.3.34
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.iotwireless.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * LoRaWANGatewayVersion object.
 */
public class LoRaWanGatewayVersion private constructor(builder: Builder) {
    /**
     * The model number of the wireless gateway.
     */
    public val model: kotlin.String? = builder.model
    /**
     * The version of the wireless gateway firmware.
     */
    public val packageVersion: kotlin.String? = builder.packageVersion
    /**
     * The basic station version of the wireless gateway.
     */
    public val station: kotlin.String? = builder.station

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.LoRaWanGatewayVersion = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("LoRaWanGatewayVersion(")
        append("model=$model,")
        append("packageVersion=$packageVersion,")
        append("station=$station")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = model?.hashCode() ?: 0
        result = 31 * result + (packageVersion?.hashCode() ?: 0)
        result = 31 * result + (station?.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 LoRaWanGatewayVersion

        if (model != other.model) return false
        if (packageVersion != other.packageVersion) return false
        if (station != other.station) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotwireless.model.LoRaWanGatewayVersion = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The model number of the wireless gateway.
         */
        public var model: kotlin.String? = null
        /**
         * The version of the wireless gateway firmware.
         */
        public var packageVersion: kotlin.String? = null
        /**
         * The basic station version of the wireless gateway.
         */
        public var station: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.LoRaWanGatewayVersion) : this() {
            this.model = x.model
            this.packageVersion = x.packageVersion
            this.station = x.station
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.iotwireless.model.LoRaWanGatewayVersion = LoRaWanGatewayVersion(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy