Added uniqueSubscribers in response schema for fetching lists

You will now receive uniqueSubscribers for a list for the below routes which denotes the total number of unique contacts (totalBlacklisted and totalSubscribers) present in a list.

Routes affected by this change:

Sample response

1{
2 "lists": [
3 {
4 "id": 53,
5 "name": "Spanish_Speakers",
6 "totalSubscribers": 5432,
7 "totalBlacklisted": 65,
8 "uniqueSubscribers": 5497,
9 "folderId": 1
10 }
11 ],
12 "count": 1
13 }