@@ -419,8 +419,8 @@ public ConnectConfigResults getConfiguration(String accountId, String connectId)
419419 public class GetConnectAllUsersOptions
420420 {
421421 private String count = null ;
422+ private String domainUsersOnly = null ;
422423 private String emailSubstring = null ;
423- private String isRecipientConnectConfig = null ;
424424 private String startPosition = null ;
425425 private String status = null ;
426426 private String userNameSubstring = null ;
@@ -442,35 +442,35 @@ public String getCount() {
442442 }
443443
444444 /**
445- * setEmailSubstring method.
445+ * setDomainUsersOnly method.
446446 */
447- public void setEmailSubstring (String emailSubstring ) {
448- this .emailSubstring = emailSubstring ;
447+ public void setDomainUsersOnly (String domainUsersOnly ) {
448+ this .domainUsersOnly = domainUsersOnly ;
449449 }
450450
451451 /**
452- * getEmailSubstring method.
452+ * getDomainUsersOnly method.
453453 *
454454 * @return String
455455 */
456- public String getEmailSubstring () {
457- return this .emailSubstring ;
456+ public String getDomainUsersOnly () {
457+ return this .domainUsersOnly ;
458458 }
459459
460460 /**
461- * setIsRecipientConnectConfig method.
461+ * setEmailSubstring method.
462462 */
463- public void setIsRecipientConnectConfig (String isRecipientConnectConfig ) {
464- this .isRecipientConnectConfig = isRecipientConnectConfig ;
463+ public void setEmailSubstring (String emailSubstring ) {
464+ this .emailSubstring = emailSubstring ;
465465 }
466466
467467 /**
468- * getIsRecipientConnectConfig method.
468+ * getEmailSubstring method.
469469 *
470470 * @return String
471471 */
472- public String getIsRecipientConnectConfig () {
473- return this .isRecipientConnectConfig ;
472+ public String getEmailSubstring () {
473+ return this .emailSubstring ;
474474 }
475475
476476 /**
@@ -525,8 +525,8 @@ public String getUserNameSubstring() {
525525 /**
526526 * Returns all users from the configured Connect service..
527527 *
528- * @param accountId (required)
529- * @param connectId (required)
528+ * @param accountId The external account number (int) or account ID Guid. (required)
529+ * @param connectId The ID of the custom Connect configuration being accessed. (required)
530530 * @return IntegratedConnectUserInfoList
531531 */
532532 public IntegratedConnectUserInfoList getConnectAllUsers (String accountId , String connectId ) throws ApiException {
@@ -536,8 +536,8 @@ public IntegratedConnectUserInfoList getConnectAllUsers(String accountId, String
536536 /**
537537 * Returns all users from the configured Connect service..
538538 *
539- * @param accountId (required)
540- * @param connectId (required)
539+ * @param accountId The external account number (int) or account ID Guid. (required)
540+ * @param connectId The ID of the custom Connect configuration being accessed. (required)
541541 * @param options for modifying the method behavior.
542542 * @return IntegratedConnectUserInfoList
543543 * @throws ApiException if fails to make API call
@@ -569,9 +569,9 @@ public IntegratedConnectUserInfoList getConnectAllUsers(String accountId, String
569569 if (options != null ) {
570570 localVarQueryParams .addAll (apiClient .parameterToPair ("count" , options .count ));
571571 }if (options != null ) {
572- localVarQueryParams .addAll (apiClient .parameterToPair ("email_substring " , options .emailSubstring ));
572+ localVarQueryParams .addAll (apiClient .parameterToPair ("domain_users_only " , options .domainUsersOnly ));
573573 }if (options != null ) {
574- localVarQueryParams .addAll (apiClient .parameterToPair ("is_recipient_connect_config " , options .isRecipientConnectConfig ));
574+ localVarQueryParams .addAll (apiClient .parameterToPair ("email_substring " , options .emailSubstring ));
575575 }if (options != null ) {
576576 localVarQueryParams .addAll (apiClient .parameterToPair ("start_position" , options .startPosition ));
577577 }if (options != null ) {
0 commit comments