commonMain.aws.sdk.kotlin.services.devicefarm.model.PurchaseOfferingRequest.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
/**
* Represents a request for a purchase offering.
*/
public class PurchaseOfferingRequest private constructor(builder: Builder) {
/**
* The ID of the offering.
*/
public val offeringId: kotlin.String? = builder.offeringId
/**
* The ID of the offering promotion to be applied to the purchase.
*/
public val offeringPromotionId: kotlin.String? = builder.offeringPromotionId
/**
* The number of device slots to purchase in an offering request.
*/
public val quantity: kotlin.Int? = builder.quantity
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devicefarm.model.PurchaseOfferingRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PurchaseOfferingRequest(")
append("offeringId=$offeringId,")
append("offeringPromotionId=$offeringPromotionId,")
append("quantity=$quantity")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = offeringId?.hashCode() ?: 0
result = 31 * result + (offeringPromotionId?.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 PurchaseOfferingRequest
if (offeringId != other.offeringId) return false
if (offeringPromotionId != other.offeringPromotionId) return false
if (quantity != other.quantity) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devicefarm.model.PurchaseOfferingRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the offering.
*/
public var offeringId: kotlin.String? = null
/**
* The ID of the offering promotion to be applied to the purchase.
*/
public var offeringPromotionId: kotlin.String? = null
/**
* The number of device slots to purchase in an offering request.
*/
public var quantity: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devicefarm.model.PurchaseOfferingRequest) : this() {
this.offeringId = x.offeringId
this.offeringPromotionId = x.offeringPromotionId
this.quantity = x.quantity
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devicefarm.model.PurchaseOfferingRequest = PurchaseOfferingRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}