commonMain.aws.sdk.kotlin.services.codecatalyst.model.CreateSourceRepositoryBranchResponse.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
import aws.smithy.kotlin.runtime.time.Instant
public class CreateSourceRepositoryBranchResponse private constructor(builder: Builder) {
/**
* The commit ID of the tip of the newly created branch.
*/
public val headCommitId: kotlin.String? = builder.headCommitId
/**
* The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in [RFC 3339](https://www.rfc-editor.org/rfc/rfc3339#section-5.6).
*/
public val lastUpdatedTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedTime
/**
* The name of the newly created branch.
*/
public val name: kotlin.String? = builder.name
/**
* The Git reference name of the branch.
*/
public val ref: kotlin.String? = builder.ref
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codecatalyst.model.CreateSourceRepositoryBranchResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateSourceRepositoryBranchResponse(")
append("headCommitId=$headCommitId,")
append("lastUpdatedTime=$lastUpdatedTime,")
append("name=$name,")
append("ref=$ref")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = headCommitId?.hashCode() ?: 0
result = 31 * result + (lastUpdatedTime?.hashCode() ?: 0)
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (ref?.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 CreateSourceRepositoryBranchResponse
if (headCommitId != other.headCommitId) return false
if (lastUpdatedTime != other.lastUpdatedTime) return false
if (name != other.name) return false
if (ref != other.ref) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codecatalyst.model.CreateSourceRepositoryBranchResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The commit ID of the tip of the newly created branch.
*/
public var headCommitId: kotlin.String? = null
/**
* The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in [RFC 3339](https://www.rfc-editor.org/rfc/rfc3339#section-5.6).
*/
public var lastUpdatedTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The name of the newly created branch.
*/
public var name: kotlin.String? = null
/**
* The Git reference name of the branch.
*/
public var ref: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codecatalyst.model.CreateSourceRepositoryBranchResponse) : this() {
this.headCommitId = x.headCommitId
this.lastUpdatedTime = x.lastUpdatedTime
this.name = x.name
this.ref = x.ref
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codecatalyst.model.CreateSourceRepositoryBranchResponse = CreateSourceRepositoryBranchResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}