-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_customfield.go
More file actions
1214 lines (1018 loc) · 38.5 KB
/
api_customfield.go
File metadata and controls
1214 lines (1018 loc) · 38.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Teambition Open API
Teambition Open API
API version: 1.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package openapi
import (
"bytes"
"context"
"io"
"net/http"
"net/url"
"strings"
)
// CustomfieldAPIService CustomfieldAPI service
type CustomfieldAPIService service
type ApiCountByCategoryV3Request struct {
ctx context.Context
ApiService *CustomfieldAPIService
xTenantId *string
categoryIds *string
}
// 企业 ID
func (r ApiCountByCategoryV3Request) XTenantId(xTenantId string) ApiCountByCategoryV3Request {
r.xTenantId = &xTenantId
return r
}
// 自定义字段分类ID集合,逗号组合,未分类可使用 uncategory
func (r ApiCountByCategoryV3Request) CategoryIds(categoryIds string) ApiCountByCategoryV3Request {
r.categoryIds = &categoryIds
return r
}
func (r ApiCountByCategoryV3Request) Execute() (*CountByCategoryV3Response, *http.Response, error) {
return r.ApiService.CountByCategoryV3Execute(r)
}
/*
CountByCategoryV3 根据自定义字段分类统计自定义字段数
根据自定义字段分类统计自定义字段数
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCountByCategoryV3Request
@link https://open.teambition.com/docs/apis/63ee3ea2912d20d3b543ee9c document
*/
func (a *CustomfieldAPIService) CountByCategoryV3(ctx context.Context) ApiCountByCategoryV3Request {
return ApiCountByCategoryV3Request{
ApiService: a,
ctx: ctx,
}
}
// Execute executes the request
// @return CountByCategoryV3Response
func (a *CustomfieldAPIService) CountByCategoryV3Execute(r ApiCountByCategoryV3Request) (*CountByCategoryV3Response, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodGet
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *CountByCategoryV3Response
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx)
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/v3/customfield/count-by-category"
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
if r.categoryIds != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "categoryIds", r.categoryIds, "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.xTenantId != nil {
parameterAddToHeaderOrQuery(localVarHeaderParams, "X-Tenant-Id", r.xTenantId, "")
}
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}
type ApiCreateProjectCustomfieldV3Request struct {
ctx context.Context
ApiService *CustomfieldAPIService
xOperatorId *string
xTenantId *string
projectId *string
createProjectCustomfieldV3Request *CreateProjectCustomfieldV3Request
}
// 创建人ID
func (r ApiCreateProjectCustomfieldV3Request) XOperatorId(xOperatorId string) ApiCreateProjectCustomfieldV3Request {
r.xOperatorId = &xOperatorId
return r
}
// 企业 ID
func (r ApiCreateProjectCustomfieldV3Request) XTenantId(xTenantId string) ApiCreateProjectCustomfieldV3Request {
r.xTenantId = &xTenantId
return r
}
// 项目ID
func (r ApiCreateProjectCustomfieldV3Request) ProjectId(projectId string) ApiCreateProjectCustomfieldV3Request {
r.projectId = &projectId
return r
}
//
func (r ApiCreateProjectCustomfieldV3Request) CreateProjectCustomfieldV3Request(createProjectCustomfieldV3Request CreateProjectCustomfieldV3Request) ApiCreateProjectCustomfieldV3Request {
r.createProjectCustomfieldV3Request = &createProjectCustomfieldV3Request
return r
}
func (r ApiCreateProjectCustomfieldV3Request) Execute() (*CreateProjectCustomfieldV3Response, *http.Response, error) {
return r.ApiService.CreateProjectCustomfieldV3Execute(r)
}
/*
CreateProjectCustomfieldV3 创建项目自定义字段(提交项目ID),创建企业自定义字段
创建项目自定义字段(提交项目ID),创建企业自定义字段
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateProjectCustomfieldV3Request
@link https://open.teambition.com/docs/apis/6321c6d0912d20d3b5a492ca document
*/
func (a *CustomfieldAPIService) CreateProjectCustomfieldV3(ctx context.Context) ApiCreateProjectCustomfieldV3Request {
return ApiCreateProjectCustomfieldV3Request{
ApiService: a,
ctx: ctx,
}
}
// Execute executes the request
// @return CreateProjectCustomfieldV3Response
func (a *CustomfieldAPIService) CreateProjectCustomfieldV3Execute(r ApiCreateProjectCustomfieldV3Request) (*CreateProjectCustomfieldV3Response, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodPost
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *CreateProjectCustomfieldV3Response
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx)
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/v3/customfield/create"
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
if r.projectId != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "projectId", r.projectId, "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{"application/json"}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.xOperatorId != nil {
parameterAddToHeaderOrQuery(localVarHeaderParams, "x-operator-id", r.xOperatorId, "")
}
if r.xTenantId != nil {
parameterAddToHeaderOrQuery(localVarHeaderParams, "X-Tenant-Id", r.xTenantId, "")
}
// body params
localVarPostBody = r.createProjectCustomfieldV3Request
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}
type ApiDeleteCustomfieldV3Request struct {
ctx context.Context
ApiService *CustomfieldAPIService
customfieldId string
xTenantId *string
projectId *string
body *map[string]interface{}
}
// 企业 ID
func (r ApiDeleteCustomfieldV3Request) XTenantId(xTenantId string) ApiDeleteCustomfieldV3Request {
r.xTenantId = &xTenantId
return r
}
// 项目ID
func (r ApiDeleteCustomfieldV3Request) ProjectId(projectId string) ApiDeleteCustomfieldV3Request {
r.projectId = &projectId
return r
}
//
func (r ApiDeleteCustomfieldV3Request) Body(body map[string]interface{}) ApiDeleteCustomfieldV3Request {
r.body = &body
return r
}
func (r ApiDeleteCustomfieldV3Request) Execute() (*DeleteCustomfieldV3Response, *http.Response, error) {
return r.ApiService.DeleteCustomfieldV3Execute(r)
}
/*
DeleteCustomfieldV3 删除自定义字段,默认删除企业自定义字段,如果传递项目ID,则删除项目下自定义字段
删除自定义字段,默认删除企业自定义字段,如果传递项目ID,则删除项目下自定义字段
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customfieldId 自定义字段ID
@return ApiDeleteCustomfieldV3Request
@link https://open.teambition.com/docs/apis/6321c6d0912d20d3b5a4930c document
*/
func (a *CustomfieldAPIService) DeleteCustomfieldV3(ctx context.Context, customfieldId string) ApiDeleteCustomfieldV3Request {
return ApiDeleteCustomfieldV3Request{
ApiService: a,
ctx: ctx,
customfieldId: customfieldId,
}
}
// Execute executes the request
// @return DeleteCustomfieldV3Response
func (a *CustomfieldAPIService) DeleteCustomfieldV3Execute(r ApiDeleteCustomfieldV3Request) (*DeleteCustomfieldV3Response, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodPost
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *DeleteCustomfieldV3Response
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx)
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/v3/customfield/{customfieldId}/delete"
localVarPath = strings.Replace(localVarPath, "{"+"customfieldId"+"}", url.PathEscape(parameterValueToString(r.customfieldId, "customfieldId")), -1)
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
if r.projectId != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "projectId", r.projectId, "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{"application/json"}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.xTenantId != nil {
parameterAddToHeaderOrQuery(localVarHeaderParams, "X-Tenant-Id", r.xTenantId, "")
}
// body params
localVarPostBody = r.body
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}
type ApiSearchFieldCategoriesV3Request struct {
ctx context.Context
ApiService *CustomfieldAPIService
xTenantId *string
q *string
categoryIds *string
pageToken *string
pageSize *int32
}
// 企业 ID
func (r ApiSearchFieldCategoriesV3Request) XTenantId(xTenantId string) ApiSearchFieldCategoriesV3Request {
r.xTenantId = &xTenantId
return r
}
// 模糊查询任务类型名称
func (r ApiSearchFieldCategoriesV3Request) Q(q string) ApiSearchFieldCategoriesV3Request {
r.q = &q
return r
}
// 自定义字段分类ID集合,逗号组合
func (r ApiSearchFieldCategoriesV3Request) CategoryIds(categoryIds string) ApiSearchFieldCategoriesV3Request {
r.categoryIds = &categoryIds
return r
}
// 分页标
func (r ApiSearchFieldCategoriesV3Request) PageToken(pageToken string) ApiSearchFieldCategoriesV3Request {
r.pageToken = &pageToken
return r
}
// 每页任务数量(默认为50)
func (r ApiSearchFieldCategoriesV3Request) PageSize(pageSize int32) ApiSearchFieldCategoriesV3Request {
r.pageSize = &pageSize
return r
}
func (r ApiSearchFieldCategoriesV3Request) Execute() (*SearchFieldCategoriesV3Response, *http.Response, error) {
return r.ApiService.SearchFieldCategoriesV3Execute(r)
}
/*
SearchFieldCategoriesV3 搜索企业自定义字段分类
搜索企业自定义字段分类
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchFieldCategoriesV3Request
@link https://open.teambition.com/docs/apis/63ee3ea2912d20d3b543ee57 document
*/
func (a *CustomfieldAPIService) SearchFieldCategoriesV3(ctx context.Context) ApiSearchFieldCategoriesV3Request {
return ApiSearchFieldCategoriesV3Request{
ApiService: a,
ctx: ctx,
}
}
// Execute executes the request
// @return SearchFieldCategoriesV3Response
func (a *CustomfieldAPIService) SearchFieldCategoriesV3Execute(r ApiSearchFieldCategoriesV3Request) (*SearchFieldCategoriesV3Response, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodGet
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *SearchFieldCategoriesV3Response
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx)
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/v3/customfield-category/search"
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
if r.q != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "q", r.q, "")
}
if r.categoryIds != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "categoryIds", r.categoryIds, "")
}
if r.pageToken != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "pageToken", r.pageToken, "")
}
if r.pageSize != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "pageSize", r.pageSize, "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.xTenantId != nil {
parameterAddToHeaderOrQuery(localVarHeaderParams, "X-Tenant-Id", r.xTenantId, "")
}
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}
type ApiSearchFieldChoicesV3Request struct {
ctx context.Context
ApiService *CustomfieldAPIService
customfieldId string
xTenantId *string
projectId *string
q *string
pageSize *int32
pageToken *string
onlyLeaf *bool
onlyOneDepth *bool
prefixPath *string
}
// 企业 ID
func (r ApiSearchFieldChoicesV3Request) XTenantId(xTenantId string) ApiSearchFieldChoicesV3Request {
r.xTenantId = &xTenantId
return r
}
// 项目ID
func (r ApiSearchFieldChoicesV3Request) ProjectId(projectId string) ApiSearchFieldChoicesV3Request {
r.projectId = &projectId
return r
}
// 选项名字(模糊搜索)
func (r ApiSearchFieldChoicesV3Request) Q(q string) ApiSearchFieldChoicesV3Request {
r.q = &q
return r
}
// 分页长度
func (r ApiSearchFieldChoicesV3Request) PageSize(pageSize int32) ApiSearchFieldChoicesV3Request {
r.pageSize = &pageSize
return r
}
// 分页标
func (r ApiSearchFieldChoicesV3Request) PageToken(pageToken string) ApiSearchFieldChoicesV3Request {
r.pageToken = &pageToken
return r
}
// 仅查看叶子节点
func (r ApiSearchFieldChoicesV3Request) OnlyLeaf(onlyLeaf bool) ApiSearchFieldChoicesV3Request {
r.onlyLeaf = &onlyLeaf
return r
}
// 仅查当前深度
func (r ApiSearchFieldChoicesV3Request) OnlyOneDepth(onlyOneDepth bool) ApiSearchFieldChoicesV3Request {
r.onlyOneDepth = &onlyOneDepth
return r
}
// 选项前缀
func (r ApiSearchFieldChoicesV3Request) PrefixPath(prefixPath string) ApiSearchFieldChoicesV3Request {
r.prefixPath = &prefixPath
return r
}
func (r ApiSearchFieldChoicesV3Request) Execute() (*SearchFieldChoicesV3Response, *http.Response, error) {
return r.ApiService.SearchFieldChoicesV3Execute(r)
}
/*
SearchFieldChoicesV3 搜索层级字段选项
搜索层级字段选项
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customfieldId 自定义字段ID
@return ApiSearchFieldChoicesV3Request
@link https://open.teambition.com/docs/apis/64057c9b912d20d3b5e63df6 document
*/
func (a *CustomfieldAPIService) SearchFieldChoicesV3(ctx context.Context, customfieldId string) ApiSearchFieldChoicesV3Request {
return ApiSearchFieldChoicesV3Request{
ApiService: a,
ctx: ctx,
customfieldId: customfieldId,
}
}
// Execute executes the request
// @return SearchFieldChoicesV3Response
func (a *CustomfieldAPIService) SearchFieldChoicesV3Execute(r ApiSearchFieldChoicesV3Request) (*SearchFieldChoicesV3Response, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodGet
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *SearchFieldChoicesV3Response
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx)
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/v3/customfield/{customfieldId}/choice/search"
localVarPath = strings.Replace(localVarPath, "{"+"customfieldId"+"}", url.PathEscape(parameterValueToString(r.customfieldId, "customfieldId")), -1)
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
if r.projectId != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "projectId", r.projectId, "")
}
if r.q != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "q", r.q, "")
}
if r.pageSize != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "pageSize", r.pageSize, "")
}
if r.pageToken != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "pageToken", r.pageToken, "")
}
if r.onlyLeaf != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "onlyLeaf", r.onlyLeaf, "")
}
if r.onlyOneDepth != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "onlyOneDepth", r.onlyOneDepth, "")
}
if r.prefixPath != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "prefixPath", r.prefixPath, "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.xTenantId != nil {
parameterAddToHeaderOrQuery(localVarHeaderParams, "X-Tenant-Id", r.xTenantId, "")
}
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}
type ApiSearchOrgCustomfiledV3Request struct {
ctx context.Context
ApiService *CustomfieldAPIService
xTenantId *string
cfIds *string
projectIds *string
instanceIds *string
q *string
pageSize *int32
pageToken *string
}
// 企业 ID
func (r ApiSearchOrgCustomfiledV3Request) XTenantId(xTenantId string) ApiSearchOrgCustomfiledV3Request {
r.xTenantId = &xTenantId
return r
}
// 自定义字段ID集合,逗号组合
func (r ApiSearchOrgCustomfiledV3Request) CfIds(cfIds string) ApiSearchOrgCustomfiledV3Request {
r.cfIds = &cfIds
return r
}
// 过滤出在指定项目中使用的企业字段,当scope=usedInProjectIds有效
func (r ApiSearchOrgCustomfiledV3Request) ProjectIds(projectIds string) ApiSearchOrgCustomfiledV3Request {
r.projectIds = &projectIds
return r
}
// 字段InstanceId集合,用逗号组合
func (r ApiSearchOrgCustomfiledV3Request) InstanceIds(instanceIds string) ApiSearchOrgCustomfiledV3Request {
r.instanceIds = &instanceIds
return r
}
// 过滤字段名字
func (r ApiSearchOrgCustomfiledV3Request) Q(q string) ApiSearchOrgCustomfiledV3Request {
r.q = &q
return r
}
// 每页长度
func (r ApiSearchOrgCustomfiledV3Request) PageSize(pageSize int32) ApiSearchOrgCustomfiledV3Request {
r.pageSize = &pageSize
return r
}
// 分页标
func (r ApiSearchOrgCustomfiledV3Request) PageToken(pageToken string) ApiSearchOrgCustomfiledV3Request {
r.pageToken = &pageToken
return r
}
func (r ApiSearchOrgCustomfiledV3Request) Execute() (*SearchOrgCustomfiledV3Response, *http.Response, error) {
return r.ApiService.SearchOrgCustomfiledV3Execute(r)
}
/*
SearchOrgCustomfiledV3 搜索企业自定义字段
搜索企业自定义字段
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchOrgCustomfiledV3Request
@link https://open.teambition.com/docs/apis/6321c6d0912d20d3b5a49355 document
*/
func (a *CustomfieldAPIService) SearchOrgCustomfiledV3(ctx context.Context) ApiSearchOrgCustomfiledV3Request {
return ApiSearchOrgCustomfiledV3Request{
ApiService: a,
ctx: ctx,
}
}
// Execute executes the request
// @return SearchOrgCustomfiledV3Response
func (a *CustomfieldAPIService) SearchOrgCustomfiledV3Execute(r ApiSearchOrgCustomfiledV3Request) (*SearchOrgCustomfiledV3Response, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodGet
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *SearchOrgCustomfiledV3Response
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx)
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/v3/customfield/search"
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
if r.cfIds != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "cfIds", r.cfIds, "")
}
if r.projectIds != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "projectIds", r.projectIds, "")
}
if r.instanceIds != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "instanceIds", r.instanceIds, "")
}
if r.q != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "q", r.q, "")
}
if r.pageSize != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "pageSize", r.pageSize, "")
}
if r.pageToken != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "pageToken", r.pageToken, "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.xTenantId != nil {
parameterAddToHeaderOrQuery(localVarHeaderParams, "X-Tenant-Id", r.xTenantId, "")
}
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}
type ApiUpdateCustomfieldV3Request struct {
ctx context.Context
ApiService *CustomfieldAPIService
customfieldId string
xOperatorId *string
xTenantId *string
projectId *string
updateCustomfieldV3Request *UpdateCustomfieldV3Request
}
// 操作者ID
func (r ApiUpdateCustomfieldV3Request) XOperatorId(xOperatorId string) ApiUpdateCustomfieldV3Request {
r.xOperatorId = &xOperatorId
return r
}
// 企业 ID
func (r ApiUpdateCustomfieldV3Request) XTenantId(xTenantId string) ApiUpdateCustomfieldV3Request {
r.xTenantId = &xTenantId
return r
}
//
func (r ApiUpdateCustomfieldV3Request) ProjectId(projectId string) ApiUpdateCustomfieldV3Request {
r.projectId = &projectId
return r
}
//
func (r ApiUpdateCustomfieldV3Request) UpdateCustomfieldV3Request(updateCustomfieldV3Request UpdateCustomfieldV3Request) ApiUpdateCustomfieldV3Request {
r.updateCustomfieldV3Request = &updateCustomfieldV3Request
return r
}
func (r ApiUpdateCustomfieldV3Request) Execute() (*UpdateCustomfieldV3Response, *http.Response, error) {
return r.ApiService.UpdateCustomfieldV3Execute(r)
}
/*
UpdateCustomfieldV3 更新自定义字段,默认更新企业自定义字段,如果传递项目ID,则更新项目下自定义字段
更新自定义字段,默认更新企业自定义字段,如果传递项目ID,则更新项目下自定义字段
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customfieldId 自定义字段ID
@return ApiUpdateCustomfieldV3Request
@link https://open.teambition.com/docs/apis/6321c6d0912d20d3b5a49391 document
*/
func (a *CustomfieldAPIService) UpdateCustomfieldV3(ctx context.Context, customfieldId string) ApiUpdateCustomfieldV3Request {
return ApiUpdateCustomfieldV3Request{
ApiService: a,
ctx: ctx,
customfieldId: customfieldId,
}
}
// Execute executes the request
// @return UpdateCustomfieldV3Response
func (a *CustomfieldAPIService) UpdateCustomfieldV3Execute(r ApiUpdateCustomfieldV3Request) (*UpdateCustomfieldV3Response, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodPut
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *UpdateCustomfieldV3Response
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx)
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/v3/customfield/{customfieldId}/update"