/// <summary>
 /// Initializes a new instance of the <see cref="RequestedUnifiedGroupsSet"/> class.
 /// </summary>
 /// <param name="filterType">The filterType for the list of groups to be returned</param>
 /// <param name="sortType">The sort type for the list of groups to be returned</param>
 /// <param name="sortDirection">The sort direction for list of groups to be returned</param>
 public RequestedUnifiedGroupsSet(
     UnifiedGroupsFilterType filterType,
     UnifiedGroupsSortType sortType,
     SortDirection sortDirection)
 {
     this.FilterType = filterType;
     this.SortType = sortType;
     this.SortDirection = sortDirection;
 }