@@ -281,7 +281,6 @@ public class GetBulkSendBatchEnvelopesOptions
281281 private String searchText = null ;
282282 private String startPosition = null ;
283283 private String status = null ;
284- private String userId = null ;
285284
286285 /**
287286 * setCount method.
@@ -394,22 +393,6 @@ public void setStatus(String status) {
394393 public String getStatus () {
395394 return this .status ;
396395 }
397-
398- /**
399- * setUserId method.
400- */
401- public void setUserId (String userId ) {
402- this .userId = userId ;
403- }
404-
405- /**
406- * getUserId method.
407- *
408- * @return String
409- */
410- public String getUserId () {
411- return this .userId ;
412- }
413396 }
414397
415398 /**
@@ -470,8 +453,6 @@ public EnvelopesInformation getBulkSendBatchEnvelopes(String accountId, String b
470453 localVarQueryParams .addAll (apiClient .parameterToPair ("start_position" , options .startPosition ));
471454 }if (options != null ) {
472455 localVarQueryParams .addAll (apiClient .parameterToPair ("status" , options .status ));
473- }if (options != null ) {
474- localVarQueryParams .addAll (apiClient .parameterToPair ("user_id" , options .userId ));
475456 }
476457
477458
@@ -559,9 +540,12 @@ public class GetBulkSendBatchesOptions
559540 {
560541 private String batchIds = null ;
561542 private String count = null ;
543+ private String fromDate = null ;
562544 private String searchText = null ;
563545 private String startPosition = null ;
564546 private String status = null ;
547+ private String toDate = null ;
548+ private String userId = null ;
565549
566550 /**
567551 * setBatchIds method.
@@ -595,6 +579,22 @@ public String getCount() {
595579 return this .count ;
596580 }
597581
582+ /**
583+ * setFromDate method.
584+ */
585+ public void setFromDate (String fromDate ) {
586+ this .fromDate = fromDate ;
587+ }
588+
589+ /**
590+ * getFromDate method.
591+ *
592+ * @return String
593+ */
594+ public String getFromDate () {
595+ return this .fromDate ;
596+ }
597+
598598 /**
599599 * setSearchText method.
600600 */
@@ -642,6 +642,38 @@ public void setStatus(String status) {
642642 public String getStatus () {
643643 return this .status ;
644644 }
645+
646+ /**
647+ * setToDate method.
648+ */
649+ public void setToDate (String toDate ) {
650+ this .toDate = toDate ;
651+ }
652+
653+ /**
654+ * getToDate method.
655+ *
656+ * @return String
657+ */
658+ public String getToDate () {
659+ return this .toDate ;
660+ }
661+
662+ /**
663+ * setUserId method.
664+ */
665+ public void setUserId (String userId ) {
666+ this .userId = userId ;
667+ }
668+
669+ /**
670+ * getUserId method.
671+ *
672+ * @return String
673+ */
674+ public String getUserId () {
675+ return this .userId ;
676+ }
645677 }
646678
647679 /**
@@ -684,12 +716,18 @@ public BulkSendBatchSummaries getBulkSendBatches(String accountId, BulkEnvelopes
684716 localVarQueryParams .addAll (apiClient .parameterToPair ("batch_ids" , options .batchIds ));
685717 }if (options != null ) {
686718 localVarQueryParams .addAll (apiClient .parameterToPair ("count" , options .count ));
719+ }if (options != null ) {
720+ localVarQueryParams .addAll (apiClient .parameterToPair ("from_date" , options .fromDate ));
687721 }if (options != null ) {
688722 localVarQueryParams .addAll (apiClient .parameterToPair ("search_text" , options .searchText ));
689723 }if (options != null ) {
690724 localVarQueryParams .addAll (apiClient .parameterToPair ("start_position" , options .startPosition ));
691725 }if (options != null ) {
692726 localVarQueryParams .addAll (apiClient .parameterToPair ("status" , options .status ));
727+ }if (options != null ) {
728+ localVarQueryParams .addAll (apiClient .parameterToPair ("to_date" , options .toDate ));
729+ }if (options != null ) {
730+ localVarQueryParams .addAll (apiClient .parameterToPair ("user_id" , options .userId ));
693731 }
694732
695733
0 commit comments