commonMain.aws.sdk.kotlin.services.translate.model.GetTerminologyRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of translate-jvm Show documentation
Show all versions of translate-jvm Show documentation
The AWS SDK for Kotlin client for Translate
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.translate.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetTerminologyRequest private constructor(builder: Builder) {
/**
* The name of the custom terminology being retrieved.
*/
public val name: kotlin.String? = builder.name
/**
* The data format of the custom terminology being retrieved.
*
* If you don't specify this parameter, Amazon Translate returns a file with the same format as the file that was imported to create the terminology.
*
* If you specify this parameter when you retrieve a multi-directional terminology resource, you must specify the same format as the input file that was imported to create it. Otherwise, Amazon Translate throws an error.
*/
public val terminologyDataFormat: aws.sdk.kotlin.services.translate.model.TerminologyDataFormat? = builder.terminologyDataFormat
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.translate.model.GetTerminologyRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetTerminologyRequest(")
append("name=$name,")
append("terminologyDataFormat=$terminologyDataFormat")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (terminologyDataFormat?.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 GetTerminologyRequest
if (name != other.name) return false
if (terminologyDataFormat != other.terminologyDataFormat) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.translate.model.GetTerminologyRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the custom terminology being retrieved.
*/
public var name: kotlin.String? = null
/**
* The data format of the custom terminology being retrieved.
*
* If you don't specify this parameter, Amazon Translate returns a file with the same format as the file that was imported to create the terminology.
*
* If you specify this parameter when you retrieve a multi-directional terminology resource, you must specify the same format as the input file that was imported to create it. Otherwise, Amazon Translate throws an error.
*/
public var terminologyDataFormat: aws.sdk.kotlin.services.translate.model.TerminologyDataFormat? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.translate.model.GetTerminologyRequest) : this() {
this.name = x.name
this.terminologyDataFormat = x.terminologyDataFormat
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.translate.model.GetTerminologyRequest = GetTerminologyRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}