
commonMain.aws.sdk.kotlin.services.sms.model.GetAppValidationOutputResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sms.model
public class GetAppValidationOutputResponse private constructor(builder: Builder) {
/**
* The validation output.
*/
public val validationOutputList: List? = builder.validationOutputList
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.sms.model.GetAppValidationOutputResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetAppValidationOutputResponse(")
append("validationOutputList=$validationOutputList")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = validationOutputList?.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 GetAppValidationOutputResponse
if (validationOutputList != other.validationOutputList) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.sms.model.GetAppValidationOutputResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The validation output.
*/
public var validationOutputList: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.sms.model.GetAppValidationOutputResponse) : this() {
this.validationOutputList = x.validationOutputList
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.sms.model.GetAppValidationOutputResponse = GetAppValidationOutputResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy