commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SelectValidation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Validation rules for a select field.
*/
public class SelectValidation private constructor(builder: Builder) {
/**
* The maximum number of choices for the select.
*/
public val maxChoices: kotlin.Int = requireNotNull(builder.maxChoices) { "A non-null value must be provided for maxChoices" }
/**
* The minimum number of choices for the select.
*/
public val minChoices: kotlin.Int = requireNotNull(builder.minChoices) { "A non-null value must be provided for minChoices" }
/**
* An array of strings for the possible selection options.
*/
public val options: List = requireNotNull(builder.options) { "A non-null value must be provided for options" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SelectValidation = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SelectValidation(")
append("maxChoices=$maxChoices,")
append("minChoices=$minChoices,")
append("options=$options")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = maxChoices
result = 31 * result + (minChoices)
result = 31 * result + (options.hashCode())
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 SelectValidation
if (maxChoices != other.maxChoices) return false
if (minChoices != other.minChoices) return false
if (options != other.options) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SelectValidation = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The maximum number of choices for the select.
*/
public var maxChoices: kotlin.Int? = null
/**
* The minimum number of choices for the select.
*/
public var minChoices: kotlin.Int? = null
/**
* An array of strings for the possible selection options.
*/
public var options: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SelectValidation) : this() {
this.maxChoices = x.maxChoices
this.minChoices = x.minChoices
this.options = x.options
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SelectValidation = SelectValidation(this)
internal fun correctErrors(): Builder {
if (maxChoices == null) maxChoices = 0
if (minChoices == null) minChoices = 0
if (options == null) options = emptyList()
return this
}
}
}