All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.elastictranscoder.model.Clip.kt Maven / Gradle / Ivy

There is a newer version: 1.3.37
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.elastictranscoder.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Settings for one clip in a composition. All jobs in a playlist must have the same clip settings.
 */
@Deprecated("No longer recommended for use. See AWS API documentation for more details.")
public class Clip private constructor(builder: Builder) {
    /**
     * Settings that determine when a clip begins and how long it lasts.
     */
    public val timeSpan: aws.sdk.kotlin.services.elastictranscoder.model.TimeSpan? = builder.timeSpan

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.elastictranscoder.model.Clip = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("Clip(")
        append("timeSpan=$timeSpan")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = timeSpan?.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 Clip

        if (timeSpan != other.timeSpan) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.elastictranscoder.model.Clip = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Settings that determine when a clip begins and how long it lasts.
         */
        public var timeSpan: aws.sdk.kotlin.services.elastictranscoder.model.TimeSpan? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.elastictranscoder.model.Clip) : this() {
            this.timeSpan = x.timeSpan
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.elastictranscoder.model.Clip = Clip(this)

        /**
         * construct an [aws.sdk.kotlin.services.elastictranscoder.model.TimeSpan] inside the given [block]
         */
        public fun timeSpan(block: aws.sdk.kotlin.services.elastictranscoder.model.TimeSpan.Builder.() -> kotlin.Unit) {
            this.timeSpan = aws.sdk.kotlin.services.elastictranscoder.model.TimeSpan.invoke(block)
        }

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy