
com.pulumi.azurenative.machinelearningservices.kotlin.outputs.LabelingJobTextPropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.machinelearningservices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Properties of a labeling job for text data
* @property annotationType Annotation type of text labeling job.
* @property mediaType Media type of data asset.
* Expected value is 'Text'.
*/
public data class LabelingJobTextPropertiesResponse(
public val annotationType: String? = null,
public val mediaType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.machinelearningservices.outputs.LabelingJobTextPropertiesResponse): LabelingJobTextPropertiesResponse = LabelingJobTextPropertiesResponse(
annotationType = javaType.annotationType().map({ args0 -> args0 }).orElse(null),
mediaType = javaType.mediaType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy