commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeRegistrationsRequest.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 DescribeRegistrationsRequest private constructor(builder: Builder) {
/**
* An array of RegistrationFilter objects to filter the results.
*/
public val filters: List? = builder.filters
/**
* 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
/**
* An array of unique identifiers for each registration.
*/
public val registrationIds: List? = builder.registrationIds
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeRegistrationsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeRegistrationsRequest(")
append("filters=$filters,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken,")
append("registrationIds=$registrationIds")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = filters?.hashCode() ?: 0
result = 31 * result + (maxResults ?: 0)
result = 31 * result + (nextToken?.hashCode() ?: 0)
result = 31 * result + (registrationIds?.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 DescribeRegistrationsRequest
if (filters != other.filters) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
if (registrationIds != other.registrationIds) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeRegistrationsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array of RegistrationFilter objects to filter the results.
*/
public var filters: 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
/**
* An array of unique identifiers for each registration.
*/
public var registrationIds: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeRegistrationsRequest) : this() {
this.filters = x.filters
this.maxResults = x.maxResults
this.nextToken = x.nextToken
this.registrationIds = x.registrationIds
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeRegistrationsRequest = DescribeRegistrationsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}