commonMain.aws.sdk.kotlin.services.devicefarm.model.RenewOfferingRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devicefarm-jvm Show documentation
Show all versions of devicefarm-jvm Show documentation
The AWS SDK for Kotlin client for Device Farm
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devicefarm.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A request that represents an offering renewal.
*/
public class RenewOfferingRequest private constructor(builder: Builder) {
/**
* The ID of a request to renew an offering.
*/
public val offeringId: kotlin.String? = builder.offeringId
/**
* The quantity requested in an offering renewal.
*/
public val quantity: kotlin.Int? = builder.quantity
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devicefarm.model.RenewOfferingRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RenewOfferingRequest(")
append("offeringId=$offeringId,")
append("quantity=$quantity")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = offeringId?.hashCode() ?: 0
result = 31 * result + (quantity ?: 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 RenewOfferingRequest
if (offeringId != other.offeringId) return false
if (quantity != other.quantity) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devicefarm.model.RenewOfferingRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of a request to renew an offering.
*/
public var offeringId: kotlin.String? = null
/**
* The quantity requested in an offering renewal.
*/
public var quantity: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devicefarm.model.RenewOfferingRequest) : this() {
this.offeringId = x.offeringId
this.quantity = x.quantity
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devicefarm.model.RenewOfferingRequest = RenewOfferingRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}