@vendasta/meetings 1.6.7 → 1.6.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6540,6 +6540,9 @@ class ListBookedMeetingsRequestFilters {
6540
6540
  if (typeof this.timeSpan !== 'undefined' && this.timeSpan !== null) {
6541
6541
  toReturn['timeSpan'] = 'toApiJson' in this.timeSpan ? this.timeSpan.toApiJson() : this.timeSpan;
6542
6542
  }
6543
+ if (typeof this.userIds !== 'undefined') {
6544
+ toReturn['userIds'] = this.userIds;
6545
+ }
6543
6546
  return toReturn;
6544
6547
  }
6545
6548
  }