commonMain.aws.sdk.kotlin.services.codecatalyst.model.GetUserDetailsResponse.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
public class GetUserDetailsResponse private constructor(builder: Builder) {
/**
* The friendly name displayed for the user in Amazon CodeCatalyst.
*/
public val displayName: kotlin.String? = builder.displayName
/**
* The email address provided by the user when they signed up.
*/
public val primaryEmail: aws.sdk.kotlin.services.codecatalyst.model.EmailAddress? = builder.primaryEmail
/**
* The system-generated unique ID of the user.
*/
public val userId: kotlin.String? = builder.userId
/**
* The name of the user as displayed in Amazon CodeCatalyst.
*/
public val userName: kotlin.String? = builder.userName
/**
*
*/
public val version: kotlin.String? = builder.version
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codecatalyst.model.GetUserDetailsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetUserDetailsResponse(")
append("displayName=$displayName,")
append("primaryEmail=$primaryEmail,")
append("userId=$userId,")
append("userName=$userName,")
append("version=$version")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = displayName?.hashCode() ?: 0
result = 31 * result + (primaryEmail?.hashCode() ?: 0)
result = 31 * result + (userId?.hashCode() ?: 0)
result = 31 * result + (userName?.hashCode() ?: 0)
result = 31 * result + (version?.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 GetUserDetailsResponse
if (displayName != other.displayName) return false
if (primaryEmail != other.primaryEmail) return false
if (userId != other.userId) return false
if (userName != other.userName) return false
if (version != other.version) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codecatalyst.model.GetUserDetailsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The friendly name displayed for the user in Amazon CodeCatalyst.
*/
public var displayName: kotlin.String? = null
/**
* The email address provided by the user when they signed up.
*/
public var primaryEmail: aws.sdk.kotlin.services.codecatalyst.model.EmailAddress? = null
/**
* The system-generated unique ID of the user.
*/
public var userId: kotlin.String? = null
/**
* The name of the user as displayed in Amazon CodeCatalyst.
*/
public var userName: kotlin.String? = null
/**
*
*/
public var version: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codecatalyst.model.GetUserDetailsResponse) : this() {
this.displayName = x.displayName
this.primaryEmail = x.primaryEmail
this.userId = x.userId
this.userName = x.userName
this.version = x.version
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codecatalyst.model.GetUserDetailsResponse = GetUserDetailsResponse(this)
/**
* construct an [aws.sdk.kotlin.services.codecatalyst.model.EmailAddress] inside the given [block]
*/
public fun primaryEmail(block: aws.sdk.kotlin.services.codecatalyst.model.EmailAddress.Builder.() -> kotlin.Unit) {
this.primaryEmail = aws.sdk.kotlin.services.codecatalyst.model.EmailAddress.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}