@@ -24,7 +24,6 @@ constructor(
2424    private  val  name:  String ,
2525    private  val  taskType:  TaskType ,
2626    private  val  description:  String? ,
27-     private  val  gitRepo:  GitRepo ? ,
2827    private  val  additionalQueryParams:  Map <String , List <String >>,
2928    private  val  additionalHeaders:  Map <String , List <String >>,
3029    private  val  additionalBodyProperties:  Map <String , JsonValue >,
@@ -36,15 +35,12 @@ constructor(
3635
3736    fun  description (): Optional <String > =  Optional .ofNullable(description)
3837
39-     fun  gitRepo (): Optional <GitRepo > =  Optional .ofNullable(gitRepo)
40- 
4138    @JvmSynthetic
4239    internal  fun  getBody (): ProjectCreateBody  {
4340        return  ProjectCreateBody (
4441            name,
4542            taskType,
4643            description,
47-             gitRepo,
4844            additionalBodyProperties,
4945        )
5046    }
@@ -60,7 +56,6 @@ constructor(
6056        private  val  name:  String? ,
6157        private  val  taskType:  TaskType ? ,
6258        private  val  description:  String? ,
63-         private  val  gitRepo:  GitRepo ? ,
6459        private  val  additionalProperties:  Map <String , JsonValue >,
6560    ) {
6661
@@ -75,8 +70,6 @@ constructor(
7570        /* * The project description. */ 
7671        @JsonProperty(" description" fun  description (): String?  =  description
7772
78-         @JsonProperty(" gitRepo" fun  gitRepo (): GitRepo ?  =  gitRepo
79- 
8073        @JsonAnyGetter
8174        @ExcludeMissing
8275        fun  _additionalProperties (): Map <String , JsonValue > =  additionalProperties
@@ -92,7 +85,6 @@ constructor(
9285                this .name ==  other.name && 
9386                this .taskType ==  other.taskType && 
9487                this .description ==  other.description && 
95-                 this .gitRepo ==  other.gitRepo && 
9688                this .additionalProperties ==  other.additionalProperties
9789        }
9890
@@ -103,15 +95,14 @@ constructor(
10395                        name,
10496                        taskType,
10597                        description,
106-                         gitRepo,
10798                        additionalProperties,
10899                    )
109100            }
110101            return  hashCode
111102        }
112103
113104        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 }" 
115106
116107        companion  object  {
117108
@@ -123,15 +114,13 @@ constructor(
123114            private  var  name:  String?  =  null 
124115            private  var  taskType:  TaskType ?  =  null 
125116            private  var  description:  String?  =  null 
126-             private  var  gitRepo:  GitRepo ?  =  null 
127117            private  var  additionalProperties:  MutableMap <String , JsonValue > =  mutableMapOf ()
128118
129119            @JvmSynthetic
130120            internal  fun  from (projectCreateBody :  ProjectCreateBody ) =  apply  {
131121                this .name =  projectCreateBody.name
132122                this .taskType =  projectCreateBody.taskType
133123                this .description =  projectCreateBody.description
134-                 this .gitRepo =  projectCreateBody.gitRepo
135124                additionalProperties(projectCreateBody.additionalProperties)
136125            }
137126
@@ -146,9 +135,6 @@ constructor(
146135            @JsonProperty(" description" 
147136            fun  description (description :  String ) =  apply  { this .description =  description }
148137
149-             @JsonProperty(" gitRepo" 
150-             fun  gitRepo (gitRepo :  GitRepo ) =  apply  { this .gitRepo =  gitRepo }
151- 
152138            fun  additionalProperties (additionalProperties :  Map <String , JsonValue >) =  apply  {
153139                this .additionalProperties.clear()
154140                this .additionalProperties.putAll(additionalProperties)
@@ -168,7 +154,6 @@ constructor(
168154                    checkNotNull(name) { " `name` is required but was not set" 
169155                    checkNotNull(taskType) { " `taskType` is required but was not set" 
170156                    description,
171-                     gitRepo,
172157                    additionalProperties.toUnmodifiable(),
173158                )
174159        }
@@ -189,7 +174,6 @@ constructor(
189174            this .name ==  other.name && 
190175            this .taskType ==  other.taskType && 
191176            this .description ==  other.description && 
192-             this .gitRepo ==  other.gitRepo && 
193177            this .additionalQueryParams ==  other.additionalQueryParams && 
194178            this .additionalHeaders ==  other.additionalHeaders && 
195179            this .additionalBodyProperties ==  other.additionalBodyProperties
@@ -200,15 +184,14 @@ constructor(
200184            name,
201185            taskType,
202186            description,
203-             gitRepo,
204187            additionalQueryParams,
205188            additionalHeaders,
206189            additionalBodyProperties,
207190        )
208191    }
209192
210193    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 }" 
212195
213196    fun  toBuilder () =  Builder ().from(this )
214197
@@ -223,7 +206,6 @@ constructor(
223206        private  var  name:  String?  =  null 
224207        private  var  taskType:  TaskType ?  =  null 
225208        private  var  description:  String?  =  null 
226-         private  var  gitRepo:  GitRepo ?  =  null 
227209        private  var  additionalQueryParams:  MutableMap <String , MutableList <String >> =  mutableMapOf ()
228210        private  var  additionalHeaders:  MutableMap <String , MutableList <String >> =  mutableMapOf ()
229211        private  var  additionalBodyProperties:  MutableMap <String , JsonValue > =  mutableMapOf ()
@@ -233,7 +215,6 @@ constructor(
233215            this .name =  projectCreateParams.name
234216            this .taskType =  projectCreateParams.taskType
235217            this .description =  projectCreateParams.description
236-             this .gitRepo =  projectCreateParams.gitRepo
237218            additionalQueryParams(projectCreateParams.additionalQueryParams)
238219            additionalHeaders(projectCreateParams.additionalHeaders)
239220            additionalBodyProperties(projectCreateParams.additionalBodyProperties)
@@ -248,8 +229,6 @@ constructor(
248229        /* * The project description. */ 
249230        fun  description (description :  String ) =  apply  { this .description =  description }
250231
251-         fun  gitRepo (gitRepo :  GitRepo ) =  apply  { this .gitRepo =  gitRepo }
252- 
253232        fun  additionalQueryParams (additionalQueryParams :  Map <String , List <String >>) =  apply  {
254233            this .additionalQueryParams.clear()
255234            putAllQueryParams(additionalQueryParams)
@@ -309,7 +288,6 @@ constructor(
309288                checkNotNull(name) { " `name` is required but was not set" 
310289                checkNotNull(taskType) { " `taskType` is required but was not set" 
311290                description,
312-                 gitRepo,
313291                additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
314292                additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
315293                additionalBodyProperties.toUnmodifiable(),
0 commit comments