com.cognite.sdk.scala.v1.fdm.datamodels.DataModel.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cognite-sdk-scala_2.13 Show documentation
Show all versions of cognite-sdk-scala_2.13 Show documentation
Scala SDK for Cognite Data Fusion.
The newest version!
package com.cognite.sdk.scala.v1.fdm.datamodels
import io.circe.generic.semiauto.{deriveDecoder, deriveEncoder}
import io.circe.{Decoder, Encoder}
final case class DataModel(
space: String,
externalId: String,
name: Option[String],
description: Option[String],
version: String,
views: Option[Seq[DataModelViewReference]],
createdTime: Long,
lastUpdatedTime: Long
)
object DataModel {
implicit val dataModelEncoder: Encoder[DataModel] =
deriveEncoder[DataModel]
implicit val dataModelDecoder: Decoder[DataModel] =
deriveDecoder[DataModel]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy