commonMain.aws.sdk.kotlin.services.pinpointemail.model.InboxPlacementTrackingOption.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointemail-jvm Show documentation
Show all versions of pinpointemail-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint Email
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointemail.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An object that contains information about the inbox placement data settings for a verified domain that’s associated with your AWS account. This data is available only if you enabled the Deliverability dashboard for the domain (`PutDeliverabilityDashboardOption` operation).
*/
public class InboxPlacementTrackingOption private constructor(builder: Builder) {
/**
* Specifies whether inbox placement data is being tracked for the domain.
*/
public val global: kotlin.Boolean = builder.global
/**
* An array of strings, one for each major email provider that the inbox placement data applies to.
*/
public val trackedIsps: List? = builder.trackedIsps
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointemail.model.InboxPlacementTrackingOption = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InboxPlacementTrackingOption(")
append("global=$global,")
append("trackedIsps=$trackedIsps")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = global.hashCode()
result = 31 * result + (trackedIsps?.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 InboxPlacementTrackingOption
if (global != other.global) return false
if (trackedIsps != other.trackedIsps) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointemail.model.InboxPlacementTrackingOption = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Specifies whether inbox placement data is being tracked for the domain.
*/
public var global: kotlin.Boolean = false
/**
* An array of strings, one for each major email provider that the inbox placement data applies to.
*/
public var trackedIsps: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointemail.model.InboxPlacementTrackingOption) : this() {
this.global = x.global
this.trackedIsps = x.trackedIsps
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointemail.model.InboxPlacementTrackingOption = InboxPlacementTrackingOption(this)
internal fun correctErrors(): Builder {
return this
}
}
}