
commonMain.aws.sdk.kotlin.services.medialive.model.ValidationError.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.medialive.model
/**
* Placeholder documentation for ValidationError
*/
public class ValidationError private constructor(builder: Builder) {
/**
* Path to the source of the error.
*/
public val elementPath: kotlin.String? = builder.elementPath
/**
* The error message.
*/
public val errorMessage: kotlin.String? = builder.errorMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.medialive.model.ValidationError = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ValidationError(")
append("elementPath=$elementPath,")
append("errorMessage=$errorMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = elementPath?.hashCode() ?: 0
result = 31 * result + (errorMessage?.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 ValidationError
if (elementPath != other.elementPath) return false
if (errorMessage != other.errorMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.medialive.model.ValidationError = Builder(this).apply(block).build()
public class Builder {
/**
* Path to the source of the error.
*/
public var elementPath: kotlin.String? = null
/**
* The error message.
*/
public var errorMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.medialive.model.ValidationError) : this() {
this.elementPath = x.elementPath
this.errorMessage = x.errorMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.medialive.model.ValidationError = ValidationError(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy