Skip to content

Commit 136b4ad

Browse files
author
Volodymyr Chernyshov
committed
Remove docs
1 parent dca8a18 commit 136b4ad

File tree

1 file changed

+0
-24
lines changed
  • danger-kotlin-library/src/main/kotlin/systems/danger/kotlin/models/bitbucket

1 file changed

+0
-24
lines changed

danger-kotlin-library/src/main/kotlin/systems/danger/kotlin/models/bitbucket/BitBucketCloud.kt

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@ import kotlinx.serialization.Serializable
88
import kotlinx.serialization.UseSerializers
99
import systems.danger.kotlin.models.serializers.DateSerializer
1010

11-
/**
12-
* The BitBucket server data for your pull request.
13-
* @property metadata The pull request and repository metadata
14-
* @property pullRequest The pull request metadata
15-
* @property commits The commits associated with the pull request
16-
* @property comments The comments on the pull request
17-
* @property activities The activities such as OPENING, CLOSING, MERGING or UPDATING a pull request
18-
*/
1911
@Serializable
2012
data class BitBucketCloud(
2113
val metadata: BitBucketMetadata,
@@ -26,19 +18,11 @@ data class BitBucketCloud(
2618
val activities: List<Activity>
2719
) {
2820

29-
/**
30-
* Defines and activity such as OPENING, CLOSING, MERGING or UPDATING a pull request
31-
* @property comment The activity's ID
32-
*/
3321
@Serializable
3422
data class Activity(
3523
val comment: Comment? = null
3624
)
3725

38-
/**
39-
* Defines and activity such as OPENING, CLOSING, MERGING or UPDATING a pull request
40-
* @property comment The activity's ID
41-
*/
4226
@Serializable
4327
data class Comment(
4428
val id: Int,
@@ -51,21 +35,13 @@ data class BitBucketCloud(
5135
val user: User,
5236
)
5337

54-
/**
55-
* Defines and activity such as OPENING, CLOSING, MERGING or UPDATING a pull request
56-
* @property comment The activity's ID
57-
*/
5838
@Serializable
5939
data class Content(
6040
val html: String,
6141
val markup: String,
6242
val raw: String
6343
)
6444

65-
/**
66-
* Defines and activity such as OPENING, CLOSING, MERGING or UPDATING a pull request
67-
* @property comment The activity's ID
68-
*/
6945
@Serializable
7046
data class User(
7147
val uuid: String,

0 commit comments

Comments
 (0)