-
Notifications
You must be signed in to change notification settings - Fork 124
/
FoldersApi.php
1250 lines (1152 loc) · 40.1 KB
/
FoldersApi.php
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
<?php
declare(strict_types=1);
/**
* FoldersApi.
*
* PHP version 7.4
*
* @category Class
* @package DocuSign\eSign
* @author Swagger Codegen team <apihelp@docusign.com>
* @license The Docusign PHP Client SDK is licensed under the MIT License.
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* Docusign eSignature REST API
*
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
*
* OpenAPI spec version: v2.1
* Contact: devcenter@docusign.com
* Generated by: https://github.com/swagger-api/swagger-codegen.git
* Swagger Codegen version: 2.4.21
*/
/**
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen
* Do not edit the class manually.
*/
namespace DocuSign\eSign\Api\FoldersApi;
/**
* ListOptions Class Doc Comment
*
* @category Class
* @package DocuSign\eSign
* @author Swagger Codegen team <apihelp@docusign.com>
* @license The Docusign PHP Client SDK is licensed under the MIT License.
* @link https://github.com/swagger-api/swagger-codegen
*/
class ListOptions
{
/**
* $count
* @var ?string
*/
protected ?string $count = null;
/**
* Gets count
*
* @return ?string
*/
public function getCount(): ?string
{
return $this->count;
}
/**
* Sets count
* @param ?string $count
*
* @return self
*/
public function setCount(?string $count): self
{
$this->count = $count;
return $this;
}
/**
* $include
* @var ?string
*/
protected ?string $include = null;
/**
* Gets include
*
* @return ?string
*/
public function getInclude(): ?string
{
return $this->include;
}
/**
* Sets include
* @param ?string $include
*
* @return self
*/
public function setInclude(?string $include): self
{
$this->include = $include;
return $this;
}
/**
* $include_items
* @var ?string
*/
protected ?string $include_items = null;
/**
* Gets include_items
*
* @return ?string
*/
public function getIncludeItems(): ?string
{
return $this->include_items;
}
/**
* Sets include_items
* @param ?string $include_items
*
* @return self
*/
public function setIncludeItems(?string $include_items): self
{
$this->include_items = $include_items;
return $this;
}
/**
* $start_position
* @var ?string
*/
protected ?string $start_position = null;
/**
* Gets start_position
*
* @return ?string
*/
public function getStartPosition(): ?string
{
return $this->start_position;
}
/**
* Sets start_position
* @param ?string $start_position
*
* @return self
*/
public function setStartPosition(?string $start_position): self
{
$this->start_position = $start_position;
return $this;
}
/**
* $sub_folder_depth
* @var ?string
*/
protected ?string $sub_folder_depth = null;
/**
* Gets sub_folder_depth
*
* @return ?string
*/
public function getSubFolderDepth(): ?string
{
return $this->sub_folder_depth;
}
/**
* Sets sub_folder_depth
* @param ?string $sub_folder_depth
*
* @return self
*/
public function setSubFolderDepth(?string $sub_folder_depth): self
{
$this->sub_folder_depth = $sub_folder_depth;
return $this;
}
/**
* $template Specifies the items that are returned. Valid values are: * include - The folder list will return normal folders plus template folders. * only - Only the list of template folders are returned.
* @var ?string
*/
protected ?string $template = null;
/**
* Gets template
*
* @return ?string
*/
public function getTemplate(): ?string
{
return $this->template;
}
/**
* Sets template
* @param ?string $template Specifies the items that are returned. Valid values are: * include - The folder list will return normal folders plus template folders. * only - Only the list of template folders are returned.
*
* @return self
*/
public function setTemplate(?string $template): self
{
$this->template = $template;
return $this;
}
/**
* $user_filter
* @var ?string
*/
protected ?string $user_filter = null;
/**
* Gets user_filter
*
* @return ?string
*/
public function getUserFilter(): ?string
{
return $this->user_filter;
}
/**
* Sets user_filter
* @param ?string $user_filter
*
* @return self
*/
public function setUserFilter(?string $user_filter): self
{
$this->user_filter = $user_filter;
return $this;
}
}
/**
* ListItemsOptions Class Doc Comment
*
* @category Class
* @package DocuSign\eSign
* @author Swagger Codegen team <apihelp@docusign.com>
* @license The Docusign PHP Client SDK is licensed under the MIT License.
* @link https://github.com/swagger-api/swagger-codegen
*/
class ListItemsOptions
{
/**
* $from_date Only return items on or after this date. If no value is provided, the default search is the previous 30 days.
* @var ?string
*/
protected ?string $from_date = null;
/**
* Gets from_date
*
* @return ?string
*/
public function getFromDate(): ?string
{
return $this->from_date;
}
/**
* Sets from_date
* @param ?string $from_date Only return items on or after this date. If no value is provided, the default search is the previous 30 days.
*
* @return self
*/
public function setFromDate(?string $from_date): self
{
$this->from_date = $from_date;
return $this;
}
/**
* $include_items
* @var ?string
*/
protected ?string $include_items = null;
/**
* Gets include_items
*
* @return ?string
*/
public function getIncludeItems(): ?string
{
return $this->include_items;
}
/**
* Sets include_items
* @param ?string $include_items
*
* @return self
*/
public function setIncludeItems(?string $include_items): self
{
$this->include_items = $include_items;
return $this;
}
/**
* $owner_email The email of the folder owner.
* @var ?string
*/
protected ?string $owner_email = null;
/**
* Gets owner_email
*
* @return ?string
*/
public function getOwnerEmail(): ?string
{
return $this->owner_email;
}
/**
* Sets owner_email
* @param ?string $owner_email The email of the folder owner.
*
* @return self
*/
public function setOwnerEmail(?string $owner_email): self
{
$this->owner_email = $owner_email;
return $this;
}
/**
* $owner_name The name of the folder owner.
* @var ?string
*/
protected ?string $owner_name = null;
/**
* Gets owner_name
*
* @return ?string
*/
public function getOwnerName(): ?string
{
return $this->owner_name;
}
/**
* Sets owner_name
* @param ?string $owner_name The name of the folder owner.
*
* @return self
*/
public function setOwnerName(?string $owner_name): self
{
$this->owner_name = $owner_name;
return $this;
}
/**
* $search_text The search text used to search the items of the envelope. The search looks at recipient names and emails, envelope custom fields, sender name, and subject.
* @var ?string
*/
protected ?string $search_text = null;
/**
* Gets search_text
*
* @return ?string
*/
public function getSearchText(): ?string
{
return $this->search_text;
}
/**
* Sets search_text
* @param ?string $search_text The search text used to search the items of the envelope. The search looks at recipient names and emails, envelope custom fields, sender name, and subject.
*
* @return self
*/
public function setSearchText(?string $search_text): self
{
$this->search_text = $search_text;
return $this;
}
/**
* $start_position The position of the folder items to return. This is used for repeated calls, when the number of envelopes returned is too much for one return (calls return 100 envelopes at a time). The default value is 0.
* @var ?string
*/
protected ?string $start_position = null;
/**
* Gets start_position
*
* @return ?string
*/
public function getStartPosition(): ?string
{
return $this->start_position;
}
/**
* Sets start_position
* @param ?string $start_position The position of the folder items to return. This is used for repeated calls, when the number of envelopes returned is too much for one return (calls return 100 envelopes at a time). The default value is 0.
*
* @return self
*/
public function setStartPosition(?string $start_position): self
{
$this->start_position = $start_position;
return $this;
}
/**
* $status The current status of the envelope. If no value is provided, the default search is all/any status.
* @var ?string
*/
protected ?string $status = null;
/**
* Gets status
*
* @return ?string
*/
public function getStatus(): ?string
{
return $this->status;
}
/**
* Sets status
* @param ?string $status The current status of the envelope. If no value is provided, the default search is all/any status.
*
* @return self
*/
public function setStatus(?string $status): self
{
$this->status = $status;
return $this;
}
/**
* $to_date Only return items up to this date. If no value is provided, the default search is to the current date.
* @var ?string
*/
protected ?string $to_date = null;
/**
* Gets to_date
*
* @return ?string
*/
public function getToDate(): ?string
{
return $this->to_date;
}
/**
* Sets to_date
* @param ?string $to_date Only return items up to this date. If no value is provided, the default search is to the current date.
*
* @return self
*/
public function setToDate(?string $to_date): self
{
$this->to_date = $to_date;
return $this;
}
}
/**
* SearchOptions Class Doc Comment
*
* @category Class
* @package DocuSign\eSign
* @author Swagger Codegen team <apihelp@docusign.com>
* @license The Docusign PHP Client SDK is licensed under the MIT License.
* @link https://github.com/swagger-api/swagger-codegen
*/
class SearchOptions
{
/**
* $all Specifies that all envelopes that match the criteria are returned.
* @var ?string
*/
protected ?string $all = null;
/**
* Gets all
*
* @return ?string
*/
public function getAll(): ?string
{
return $this->all;
}
/**
* Sets all
* @param ?string $all Specifies that all envelopes that match the criteria are returned.
*
* @return self
*/
public function setAll(?string $all): self
{
$this->all = $all;
return $this;
}
/**
* $count Specifies the number of records returned in the cache. The number must be greater than 0 and less than or equal to 100.
* @var ?string
*/
protected ?string $count = null;
/**
* Gets count
*
* @return ?string
*/
public function getCount(): ?string
{
return $this->count;
}
/**
* Sets count
* @param ?string $count Specifies the number of records returned in the cache. The number must be greater than 0 and less than or equal to 100.
*
* @return self
*/
public function setCount(?string $count): self
{
$this->count = $count;
return $this;
}
/**
* $from_date Specifies the start of the date range to return. If no value is provided, the default search is the previous 30 days.
* @var ?string
*/
protected ?string $from_date = null;
/**
* Gets from_date
*
* @return ?string
*/
public function getFromDate(): ?string
{
return $this->from_date;
}
/**
* Sets from_date
* @param ?string $from_date Specifies the start of the date range to return. If no value is provided, the default search is the previous 30 days.
*
* @return self
*/
public function setFromDate(?string $from_date): self
{
$this->from_date = $from_date;
return $this;
}
/**
* $include_recipients When set to **true**, the recipient information is returned in the response.
* @var ?string
*/
protected ?string $include_recipients = null;
/**
* Gets include_recipients
*
* @return ?string
*/
public function getIncludeRecipients(): ?string
{
return $this->include_recipients;
}
/**
* Sets include_recipients
* @param ?string $include_recipients When set to **true**, the recipient information is returned in the response.
*
* @return self
*/
public function setIncludeRecipients(?string $include_recipients): self
{
$this->include_recipients = $include_recipients;
return $this;
}
/**
* $order Specifies the order in which the list is returned. Valid values are: `asc` for ascending order, and `desc` for descending order.
* @var ?string
*/
protected ?string $order = null;
/**
* Gets order
*
* @return ?string
*/
public function getOrder(): ?string
{
return $this->order;
}
/**
* Sets order
* @param ?string $order Specifies the order in which the list is returned. Valid values are: `asc` for ascending order, and `desc` for descending order.
*
* @return self
*/
public function setOrder(?string $order): self
{
$this->order = $order;
return $this;
}
/**
* $order_by Specifies the property used to sort the list. Valid values are: `action_required`, `created`, `completed`, `sent`, `signer_list`, `status`, or `subject`.
* @var ?string
*/
protected ?string $order_by = null;
/**
* Gets order_by
*
* @return ?string
*/
public function getOrderBy(): ?string
{
return $this->order_by;
}
/**
* Sets order_by
* @param ?string $order_by Specifies the property used to sort the list. Valid values are: `action_required`, `created`, `completed`, `sent`, `signer_list`, `status`, or `subject`.
*
* @return self
*/
public function setOrderBy(?string $order_by): self
{
$this->order_by = $order_by;
return $this;
}
/**
* $start_position Specifies the the starting location in the result set of the items that are returned.
* @var ?string
*/
protected ?string $start_position = null;
/**
* Gets start_position
*
* @return ?string
*/
public function getStartPosition(): ?string
{
return $this->start_position;
}
/**
* Sets start_position
* @param ?string $start_position Specifies the the starting location in the result set of the items that are returned.
*
* @return self
*/
public function setStartPosition(?string $start_position): self
{
$this->start_position = $start_position;
return $this;
}
/**
* $to_date Specifies the end of the date range to return.
* @var ?string
*/
protected ?string $to_date = null;
/**
* Gets to_date
*
* @return ?string
*/
public function getToDate(): ?string
{
return $this->to_date;
}
/**
* Sets to_date
* @param ?string $to_date Specifies the end of the date range to return.
*
* @return self
*/
public function setToDate(?string $to_date): self
{
$this->to_date = $to_date;
return $this;
}
}
namespace DocuSign\eSign\Api;
use DocuSign\eSign\Client\ApiClient;
use DocuSign\eSign\Client\ApiException;
use DocuSign\eSign\Configuration;
use DocuSign\eSign\ObjectSerializer;
/**
* FoldersApi Class Doc Comment
*
* @category Class
* @package DocuSign\eSign
* @author Swagger Codegen team <apihelp@docusign.com>
* @license The Docusign PHP Client SDK is licensed under the MIT License.
* @link https://github.com/swagger-api/swagger-codegen
*/
class FoldersApi
{
/**
* API Client
*
* @var ApiClient instance of the ApiClient
*/
protected ApiClient $apiClient;
/**
* Constructor
*
* @param ApiClient|null $apiClient The api client to use
*
* @return void
*/
public function __construct(ApiClient $apiClient = null)
{
$this->apiClient = $apiClient ?? new ApiClient();
}
/**
* Get API client
*
* @return ApiClient get the API client
*/
public function getApiClient(): ApiClient
{
return $this->apiClient;
}
/**
* Set the API client
*
* @param ApiClient $apiClient set the API client
*
* @return self
*/
public function setApiClient(ApiClient $apiClient): self
{
$this->apiClient = $apiClient;
return $this;
}
/**
* Update $resourcePath with $
*
* @param string $resourcePath the resource path to use
* @param string $baseName the base name param
* @param string $paramName the parameter name
*
* @return string
*/
public function updateResourcePath(string $resourcePath, string $baseName, string $paramName): string
{
return str_replace(
"{" . $baseName . "}",
$this->apiClient->getSerializer()->toPathValue($paramName),
$resourcePath
);
}
/**
* Operation callList
*
* Gets a list of the folders for the account.
*
* @param ?string $account_id The external account number (int) or account ID Guid.
* @param \DocuSign\eSign\Api\FoldersApi\ListOptions $options for modifying the behavior of the function. (optional)
*
* @throws ApiException on non-2xx response
* @return \DocuSign\eSign\Model\FoldersResponse
*/
public function callList($account_id, \DocuSign\eSign\Api\FoldersApi\ListOptions $options = null)
{
list($response) = $this->callListWithHttpInfo($account_id, $options);
return $response;
}
/**
* Operation callListWithHttpInfo
*
* Gets a list of the folders for the account.
*
* @param ?string $account_id The external account number (int) or account ID Guid.
* @param \DocuSign\eSign\Api\FoldersApi\ListOptions $options for modifying the behavior of the function. (optional)
*
* @throws ApiException on non-2xx response
* @return array of \DocuSign\eSign\Model\FoldersResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function callListWithHttpInfo($account_id, \DocuSign\eSign\Api\FoldersApi\ListOptions $options = null): array
{
// verify the required parameter 'account_id' is set
if ($account_id === null) {
throw new \InvalidArgumentException('Missing the required parameter $account_id when calling callList');
}
// parse inputs
$resourcePath = "/v2.1/accounts/{accountId}/folders";
$httpBody = $_tempBody ?? ''; // $_tempBody is the method argument, if present
$queryParams = $headerParams = $formParams = [];
$headerParams['Accept'] ??= $this->apiClient->selectHeaderAccept(['application/json']);
$headerParams['Content-Type'] = $this->apiClient->selectHeaderContentType([]);
if ($options != null)
{
// query params
if ($options->getCount() != 'null') {
$queryParams['count'] = $this->apiClient->getSerializer()->toQueryValue($options->getCount());
}
if ($options->getInclude() != 'null') {
$queryParams['include'] = $this->apiClient->getSerializer()->toQueryValue($options->getInclude());
}
if ($options->getIncludeItems() != 'null') {
$queryParams['include_items'] = $this->apiClient->getSerializer()->toQueryValue($options->getIncludeItems());
}
if ($options->getStartPosition() != 'null') {
$queryParams['start_position'] = $this->apiClient->getSerializer()->toQueryValue($options->getStartPosition());
}
if ($options->getSubFolderDepth() != 'null') {
$queryParams['sub_folder_depth'] = $this->apiClient->getSerializer()->toQueryValue($options->getSubFolderDepth());
}
if ($options->getTemplate() != 'null') {
$queryParams['template'] = $this->apiClient->getSerializer()->toQueryValue($options->getTemplate());
}
if ($options->getUserFilter() != 'null') {
$queryParams['user_filter'] = $this->apiClient->getSerializer()->toQueryValue($options->getUserFilter());
}
}
// path params
if ($account_id !== null) {
$resourcePath = self::updateResourcePath($resourcePath, "accountId", $account_id);
}
// default format to json
$resourcePath = str_replace("{format}", "json", $resourcePath);
// for model (json/xml)
if (isset($_tempBody)) {
$httpBody = $_tempBody; // $_tempBody is the method argument, if present
} elseif (count($formParams) > 0) {
$httpBody = $formParams; // for HTTP post (form)
}
// this endpoint requires OAuth (access token)
if (strlen($this->apiClient->getConfig()->getAccessToken()) !== 0) {
$headerParams['Authorization'] = 'Bearer ' . $this->apiClient->getConfig()->getAccessToken();
}
// make the API Call
try {
list($response, $statusCode, $httpHeader) = $this->apiClient->callApi(
$resourcePath,
'GET',
$queryParams,
$httpBody,
$headerParams,
'\DocuSign\eSign\Model\FoldersResponse',
'/v2.1/accounts/{accountId}/folders'
);
return [$this->apiClient->getSerializer()->deserialize($response, '\DocuSign\eSign\Model\FoldersResponse', $httpHeader), $statusCode, $httpHeader];
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = $this->apiClient->getSerializer()->deserialize($e->getResponseBody(), '\DocuSign\eSign\Model\FoldersResponse', $e->getResponseHeaders());
$e->setResponseObject($data);
break;
case 400:
$data = $this->apiClient->getSerializer()->deserialize($e->getResponseBody(), '\DocuSign\eSign\Model\ErrorDetails', $e->getResponseHeaders());
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation listItems
*
* Gets a list of the envelopes in the specified folder.
*
* @param ?string $account_id The external account number (int) or account ID Guid.
* @param ?string $folder_id The ID of the folder being accessed.
* @param \DocuSign\eSign\Api\FoldersApi\ListItemsOptions $options for modifying the behavior of the function. (optional)
*
* @throws ApiException on non-2xx response
* @return \DocuSign\eSign\Model\FolderItemsResponse
*/
public function listItems($account_id, $folder_id, \DocuSign\eSign\Api\FoldersApi\ListItemsOptions $options = null)
{
list($response) = $this->listItemsWithHttpInfo($account_id, $folder_id, $options);
return $response;
}
/**
* Operation listItemsWithHttpInfo
*
* Gets a list of the envelopes in the specified folder.
*
* @param ?string $account_id The external account number (int) or account ID Guid.
* @param ?string $folder_id The ID of the folder being accessed.
* @param \DocuSign\eSign\Api\FoldersApi\ListItemsOptions $options for modifying the behavior of the function. (optional)
*
* @throws ApiException on non-2xx response
* @return array of \DocuSign\eSign\Model\FolderItemsResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function listItemsWithHttpInfo($account_id, $folder_id, \DocuSign\eSign\Api\FoldersApi\ListItemsOptions $options = null): array
{
// verify the required parameter 'account_id' is set
if ($account_id === null) {
throw new \InvalidArgumentException('Missing the required parameter $account_id when calling listItems');
}
// verify the required parameter 'folder_id' is set
if ($folder_id === null) {
throw new \InvalidArgumentException('Missing the required parameter $folder_id when calling listItems');
}
// parse inputs
$resourcePath = "/v2.1/accounts/{accountId}/folders/{folderId}";
$httpBody = $_tempBody ?? ''; // $_tempBody is the method argument, if present
$queryParams = $headerParams = $formParams = [];
$headerParams['Accept'] ??= $this->apiClient->selectHeaderAccept(['application/json']);
$headerParams['Content-Type'] = $this->apiClient->selectHeaderContentType([]);
if ($options != null)
{
// query params
if ($options->getFromDate() != 'null') {
$queryParams['from_date'] = $this->apiClient->getSerializer()->toQueryValue($options->getFromDate());
}
if ($options->getIncludeItems() != 'null') {
$queryParams['include_items'] = $this->apiClient->getSerializer()->toQueryValue($options->getIncludeItems());
}
if ($options->getOwnerEmail() != 'null') {
$queryParams['owner_email'] = $this->apiClient->getSerializer()->toQueryValue($options->getOwnerEmail());
}
if ($options->getOwnerName() != 'null') {
$queryParams['owner_name'] = $this->apiClient->getSerializer()->toQueryValue($options->getOwnerName());
}
if ($options->getSearchText() != 'null') {
$queryParams['search_text'] = $this->apiClient->getSerializer()->toQueryValue($options->getSearchText());
}
if ($options->getStartPosition() != 'null') {
$queryParams['start_position'] = $this->apiClient->getSerializer()->toQueryValue($options->getStartPosition());
}
if ($options->getStatus() != 'null') {
$queryParams['status'] = $this->apiClient->getSerializer()->toQueryValue($options->getStatus());
}
if ($options->getToDate() != 'null') {
$queryParams['to_date'] = $this->apiClient->getSerializer()->toQueryValue($options->getToDate());
}
}
// path params
if ($account_id !== null) {
$resourcePath = self::updateResourcePath($resourcePath, "accountId", $account_id);
}
// path params
if ($folder_id !== null) {
$resourcePath = self::updateResourcePath($resourcePath, "folderId", $folder_id);
}
// default format to json
$resourcePath = str_replace("{format}", "json", $resourcePath);
// for model (json/xml)
if (isset($_tempBody)) {
$httpBody = $_tempBody; // $_tempBody is the method argument, if present
} elseif (count($formParams) > 0) {
$httpBody = $formParams; // for HTTP post (form)
}
// this endpoint requires OAuth (access token)
if (strlen($this->apiClient->getConfig()->getAccessToken()) !== 0) {
$headerParams['Authorization'] = 'Bearer ' . $this->apiClient->getConfig()->getAccessToken();
}
// make the API Call
try {
list($response, $statusCode, $httpHeader) = $this->apiClient->callApi(
$resourcePath,
'GET',
$queryParams,
$httpBody,
$headerParams,
'\DocuSign\eSign\Model\FolderItemsResponse',
'/v2.1/accounts/{accountId}/folders/{folderId}'