commonMain.aws.sdk.kotlin.services.codecatalyst.model.EventPayload.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codecatalyst-jvm Show documentation
Show all versions of codecatalyst-jvm Show documentation
The AWS SDK for Kotlin client for CodeCatalyst
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codecatalyst.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about the payload of an event recording Amazon CodeCatalyst activity.
*/
public class EventPayload private constructor(builder: Builder) {
/**
* The type of content in the event payload.
*/
public val contentType: kotlin.String? = builder.contentType
/**
* The data included in the event payload.
*/
public val data: kotlin.String? = builder.data
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codecatalyst.model.EventPayload = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EventPayload(")
append("contentType=$contentType,")
append("data=$data")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = contentType?.hashCode() ?: 0
result = 31 * result + (data?.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 EventPayload
if (contentType != other.contentType) return false
if (data != other.data) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codecatalyst.model.EventPayload = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The type of content in the event payload.
*/
public var contentType: kotlin.String? = null
/**
* The data included in the event payload.
*/
public var data: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codecatalyst.model.EventPayload) : this() {
this.contentType = x.contentType
this.data = x.data
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codecatalyst.model.EventPayload = EventPayload(this)
internal fun correctErrors(): Builder {
return this
}
}
}