interface IdOwner
abstract val id: Id? |
open class BuildTypeSettings : Validatable, IdOwner
|
|
sealed class Id : IdOwner
An id of a TeamCity entity. It appears in the web UI and is used in urls. If the entity has a uuid specified, then the id can be changed at any time. If uuid is omitted, then TeamCity treats an entity with a changed id as a new entity, all data associated with the old entity will be lost (e.g. a build history, a commit graph). |
|
open class Project : Validatable, IdOwner
Represents TeamCity project. |
|
open class VcsRoot : Parametrized, Validatable, IdOwner
A base class representing TeamCity VCS root. |