@@ -24,7 +24,6 @@ constructor(
24
24
private val name: String ,
25
25
private val taskType: TaskType ,
26
26
private val description: String? ,
27
- private val gitRepo: GitRepo ? ,
28
27
private val additionalQueryParams: Map <String , List <String >>,
29
28
private val additionalHeaders: Map <String , List <String >>,
30
29
private val additionalBodyProperties: Map <String , JsonValue >,
@@ -36,15 +35,12 @@ constructor(
36
35
37
36
fun description (): Optional <String > = Optional .ofNullable(description)
38
37
39
- fun gitRepo (): Optional <GitRepo > = Optional .ofNullable(gitRepo)
40
-
41
38
@JvmSynthetic
42
39
internal fun getBody (): ProjectCreateBody {
43
40
return ProjectCreateBody (
44
41
name,
45
42
taskType,
46
43
description,
47
- gitRepo,
48
44
additionalBodyProperties,
49
45
)
50
46
}
@@ -60,7 +56,6 @@ constructor(
60
56
private val name: String? ,
61
57
private val taskType: TaskType ? ,
62
58
private val description: String? ,
63
- private val gitRepo: GitRepo ? ,
64
59
private val additionalProperties: Map <String , JsonValue >,
65
60
) {
66
61
@@ -75,8 +70,6 @@ constructor(
75
70
/* * The project description. */
76
71
@JsonProperty(" description" ) fun description (): String? = description
77
72
78
- @JsonProperty(" gitRepo" ) fun gitRepo (): GitRepo ? = gitRepo
79
-
80
73
@JsonAnyGetter
81
74
@ExcludeMissing
82
75
fun _additionalProperties (): Map <String , JsonValue > = additionalProperties
@@ -92,7 +85,6 @@ constructor(
92
85
this .name == other.name &&
93
86
this .taskType == other.taskType &&
94
87
this .description == other.description &&
95
- this .gitRepo == other.gitRepo &&
96
88
this .additionalProperties == other.additionalProperties
97
89
}
98
90
@@ -103,15 +95,14 @@ constructor(
103
95
name,
104
96
taskType,
105
97
description,
106
- gitRepo,
107
98
additionalProperties,
108
99
)
109
100
}
110
101
return hashCode
111
102
}
112
103
113
104
override fun toString () =
114
- " ProjectCreateBody{name=$name , taskType=$taskType , description=$description , gitRepo= $gitRepo , additionalProperties=$additionalProperties }"
105
+ " ProjectCreateBody{name=$name , taskType=$taskType , description=$description , additionalProperties=$additionalProperties }"
115
106
116
107
companion object {
117
108
@@ -123,15 +114,13 @@ constructor(
123
114
private var name: String? = null
124
115
private var taskType: TaskType ? = null
125
116
private var description: String? = null
126
- private var gitRepo: GitRepo ? = null
127
117
private var additionalProperties: MutableMap <String , JsonValue > = mutableMapOf ()
128
118
129
119
@JvmSynthetic
130
120
internal fun from (projectCreateBody : ProjectCreateBody ) = apply {
131
121
this .name = projectCreateBody.name
132
122
this .taskType = projectCreateBody.taskType
133
123
this .description = projectCreateBody.description
134
- this .gitRepo = projectCreateBody.gitRepo
135
124
additionalProperties(projectCreateBody.additionalProperties)
136
125
}
137
126
@@ -146,9 +135,6 @@ constructor(
146
135
@JsonProperty(" description" )
147
136
fun description (description : String ) = apply { this .description = description }
148
137
149
- @JsonProperty(" gitRepo" )
150
- fun gitRepo (gitRepo : GitRepo ) = apply { this .gitRepo = gitRepo }
151
-
152
138
fun additionalProperties (additionalProperties : Map <String , JsonValue >) = apply {
153
139
this .additionalProperties.clear()
154
140
this .additionalProperties.putAll(additionalProperties)
@@ -168,7 +154,6 @@ constructor(
168
154
checkNotNull(name) { " `name` is required but was not set" },
169
155
checkNotNull(taskType) { " `taskType` is required but was not set" },
170
156
description,
171
- gitRepo,
172
157
additionalProperties.toUnmodifiable(),
173
158
)
174
159
}
@@ -189,7 +174,6 @@ constructor(
189
174
this .name == other.name &&
190
175
this .taskType == other.taskType &&
191
176
this .description == other.description &&
192
- this .gitRepo == other.gitRepo &&
193
177
this .additionalQueryParams == other.additionalQueryParams &&
194
178
this .additionalHeaders == other.additionalHeaders &&
195
179
this .additionalBodyProperties == other.additionalBodyProperties
@@ -200,15 +184,14 @@ constructor(
200
184
name,
201
185
taskType,
202
186
description,
203
- gitRepo,
204
187
additionalQueryParams,
205
188
additionalHeaders,
206
189
additionalBodyProperties,
207
190
)
208
191
}
209
192
210
193
override fun toString () =
211
- " ProjectCreateParams{name=$name , taskType=$taskType , description=$description , gitRepo= $gitRepo , additionalQueryParams=$additionalQueryParams , additionalHeaders=$additionalHeaders , additionalBodyProperties=$additionalBodyProperties }"
194
+ " ProjectCreateParams{name=$name , taskType=$taskType , description=$description , additionalQueryParams=$additionalQueryParams , additionalHeaders=$additionalHeaders , additionalBodyProperties=$additionalBodyProperties }"
212
195
213
196
fun toBuilder () = Builder ().from(this )
214
197
@@ -223,7 +206,6 @@ constructor(
223
206
private var name: String? = null
224
207
private var taskType: TaskType ? = null
225
208
private var description: String? = null
226
- private var gitRepo: GitRepo ? = null
227
209
private var additionalQueryParams: MutableMap <String , MutableList <String >> = mutableMapOf ()
228
210
private var additionalHeaders: MutableMap <String , MutableList <String >> = mutableMapOf ()
229
211
private var additionalBodyProperties: MutableMap <String , JsonValue > = mutableMapOf ()
@@ -233,7 +215,6 @@ constructor(
233
215
this .name = projectCreateParams.name
234
216
this .taskType = projectCreateParams.taskType
235
217
this .description = projectCreateParams.description
236
- this .gitRepo = projectCreateParams.gitRepo
237
218
additionalQueryParams(projectCreateParams.additionalQueryParams)
238
219
additionalHeaders(projectCreateParams.additionalHeaders)
239
220
additionalBodyProperties(projectCreateParams.additionalBodyProperties)
@@ -248,8 +229,6 @@ constructor(
248
229
/* * The project description. */
249
230
fun description (description : String ) = apply { this .description = description }
250
231
251
- fun gitRepo (gitRepo : GitRepo ) = apply { this .gitRepo = gitRepo }
252
-
253
232
fun additionalQueryParams (additionalQueryParams : Map <String , List <String >>) = apply {
254
233
this .additionalQueryParams.clear()
255
234
putAllQueryParams(additionalQueryParams)
@@ -309,7 +288,6 @@ constructor(
309
288
checkNotNull(name) { " `name` is required but was not set" },
310
289
checkNotNull(taskType) { " `taskType` is required but was not set" },
311
290
description,
312
- gitRepo,
313
291
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
314
292
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
315
293
additionalBodyProperties.toUnmodifiable(),
0 commit comments