commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeKeywordsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeKeywordsRequest private constructor(builder: Builder) {
/**
* An array of keyword filters to filter the results.
*/
public val filters: List? = builder.filters
/**
* An array of keywords to search for.
*/
public val keywords: List? = builder.keywords
/**
* The maximum number of results to return per each request.
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.
*/
public val nextToken: kotlin.String? = builder.nextToken
/**
* The origination identity to use such as a PhoneNumberId, PhoneNumberArn, SenderId or SenderIdArn. You can use DescribePhoneNumbers to find the values for PhoneNumberId and PhoneNumberArn while DescribeSenderIds can be used to get the values for SenderId and SenderIdArn.
*/
public val originationIdentity: kotlin.String? = builder.originationIdentity
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeKeywordsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeKeywordsRequest(")
append("filters=$filters,")
append("keywords=$keywords,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken,")
append("originationIdentity=$originationIdentity")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = filters?.hashCode() ?: 0
result = 31 * result + (keywords?.hashCode() ?: 0)
result = 31 * result + (maxResults ?: 0)
result = 31 * result + (nextToken?.hashCode() ?: 0)
result = 31 * result + (originationIdentity?.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 DescribeKeywordsRequest
if (filters != other.filters) return false
if (keywords != other.keywords) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
if (originationIdentity != other.originationIdentity) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeKeywordsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array of keyword filters to filter the results.
*/
public var filters: List? = null
/**
* An array of keywords to search for.
*/
public var keywords: List? = null
/**
* The maximum number of results to return per each request.
*/
public var maxResults: kotlin.Int? = null
/**
* The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.
*/
public var nextToken: kotlin.String? = null
/**
* The origination identity to use such as a PhoneNumberId, PhoneNumberArn, SenderId or SenderIdArn. You can use DescribePhoneNumbers to find the values for PhoneNumberId and PhoneNumberArn while DescribeSenderIds can be used to get the values for SenderId and SenderIdArn.
*/
public var originationIdentity: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeKeywordsRequest) : this() {
this.filters = x.filters
this.keywords = x.keywords
this.maxResults = x.maxResults
this.nextToken = x.nextToken
this.originationIdentity = x.originationIdentity
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeKeywordsRequest = DescribeKeywordsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}