
com.pulumi.googlenative.transcoder.v1.kotlin.outputs.TextMappingResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.transcoder.v1.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* The mapping for the `Job.edit_list` atoms with text `EditAtom.inputs`.
* @property atomKey The `EditAtom.key` that references atom with text inputs in the `Job.edit_list`.
* @property inputKey The `Input.key` that identifies the input file.
* @property inputTrack The zero-based index of the track in the input file.
*/
public data class TextMappingResponse(
public val atomKey: String,
public val inputKey: String,
public val inputTrack: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.transcoder.v1.outputs.TextMappingResponse): TextMappingResponse = TextMappingResponse(
atomKey = javaType.atomKey(),
inputKey = javaType.inputKey(),
inputTrack = javaType.inputTrack(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy