commonMain.aws.sdk.kotlin.services.iotsitewise.model.ProjectSummary.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotsitewise-jvm Show documentation
Show all versions of iotsitewise-jvm Show documentation
The AWS SDK for Kotlin client for IoTSiteWise
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotsitewise.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
/**
* Contains project summary information.
*/
public class ProjectSummary private constructor(builder: Builder) {
/**
* The date the project was created, in Unix epoch time.
*/
public val creationDate: aws.smithy.kotlin.runtime.time.Instant? = builder.creationDate
/**
* The project's description.
*/
public val description: kotlin.String? = builder.description
/**
* The ID of the project.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
/**
* The date the project was last updated, in Unix epoch time.
*/
public val lastUpdateDate: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdateDate
/**
* The name of the project.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotsitewise.model.ProjectSummary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ProjectSummary(")
append("creationDate=$creationDate,")
append("description=$description,")
append("id=$id,")
append("lastUpdateDate=$lastUpdateDate,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = creationDate?.hashCode() ?: 0
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (id.hashCode())
result = 31 * result + (lastUpdateDate?.hashCode() ?: 0)
result = 31 * result + (name.hashCode())
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 ProjectSummary
if (creationDate != other.creationDate) return false
if (description != other.description) return false
if (id != other.id) return false
if (lastUpdateDate != other.lastUpdateDate) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotsitewise.model.ProjectSummary = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The date the project was created, in Unix epoch time.
*/
public var creationDate: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The project's description.
*/
public var description: kotlin.String? = null
/**
* The ID of the project.
*/
public var id: kotlin.String? = null
/**
* The date the project was last updated, in Unix epoch time.
*/
public var lastUpdateDate: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The name of the project.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotsitewise.model.ProjectSummary) : this() {
this.creationDate = x.creationDate
this.description = x.description
this.id = x.id
this.lastUpdateDate = x.lastUpdateDate
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotsitewise.model.ProjectSummary = ProjectSummary(this)
internal fun correctErrors(): Builder {
if (id == null) id = ""
if (name == null) name = ""
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy