commonMain.com.saveourtool.save.test.TestsSourceVersionDto.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.test
import com.saveourtool.save.entities.DtoWithId
import com.saveourtool.save.testsuite.TestSuitesSourceFetchMode
import kotlinx.datetime.LocalDateTime
import kotlinx.serialization.Serializable
/**
* @property snapshotId ID of [TestsSourceSnapshotDto]
* @property name human-readable version
* @property type type of fetch mode
* @property createdByUserId ID of [com.saveourtool.save.info.UserInfo] created this version
* @property creationTime time of creation this version
* @property id ID of saved entity
*/
@Serializable
data class TestsSourceVersionDto(
val snapshotId: Long,
val name: String,
val type: TestSuitesSourceFetchMode,
val createdByUserId: Long,
val creationTime: LocalDateTime,
override val id: Long? = null,
) : DtoWithId()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy