commonMain.aws.sdk.kotlin.services.mediaconvert.model.VideoDetail.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert-jvm Show documentation
Show all versions of mediaconvert-jvm Show documentation
The AWS SDK for Kotlin client for MediaConvert
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains details about the output's video stream
*/
public class VideoDetail private constructor(builder: Builder) {
/**
* Height in pixels for the output
*/
public val heightInPx: kotlin.Int? = builder.heightInPx
/**
* Width in pixels for the output
*/
public val widthInPx: kotlin.Int? = builder.widthInPx
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mediaconvert.model.VideoDetail = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("VideoDetail(")
append("heightInPx=$heightInPx,")
append("widthInPx=$widthInPx")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = heightInPx ?: 0
result = 31 * result + (widthInPx ?: 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 VideoDetail
if (heightInPx != other.heightInPx) return false
if (widthInPx != other.widthInPx) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mediaconvert.model.VideoDetail = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Height in pixels for the output
*/
public var heightInPx: kotlin.Int? = null
/**
* Width in pixels for the output
*/
public var widthInPx: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mediaconvert.model.VideoDetail) : this() {
this.heightInPx = x.heightInPx
this.widthInPx = x.widthInPx
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mediaconvert.model.VideoDetail = VideoDetail(this)
internal fun correctErrors(): Builder {
return this
}
}
}