diff --git a/src/compiled_proto/app.ts b/src/compiled_proto/app.ts
index 3662a5cac1f73daa3195ba33d2eedc46ca69c8c4..b25a9105467fee83c4db4846f0a38c3310873300 100644
--- a/src/compiled_proto/app.ts
+++ b/src/compiled_proto/app.ts
@@ -52,7 +52,6 @@ export interface Orders {
 export interface Category {
   description: string;
   id: string;
-  price: number;
   name: string;
 }
 
@@ -75,6 +74,7 @@ export interface UserPatchRequest {
 export interface User {
   id: string;
   email: string;
+  name: string;
 }
 
 export interface Users {
@@ -726,7 +726,7 @@ export const Orders = {
 };
 
 function createBaseCategory(): Category {
-  return { description: "", id: "", price: 0, name: "" };
+  return { description: "", id: "", name: "" };
 }
 
 export const Category = {
@@ -737,11 +737,8 @@ export const Category = {
     if (message.id !== "") {
       writer.uint32(18).string(message.id);
     }
-    if (message.price !== 0) {
-      writer.uint32(24).int64(message.price);
-    }
     if (message.name !== "") {
-      writer.uint32(34).string(message.name);
+      writer.uint32(26).string(message.name);
     }
     return writer;
   },
@@ -768,14 +765,7 @@ export const Category = {
           message.id = reader.string();
           continue;
         case 3:
-          if (tag !== 24) {
-            break;
-          }
-
-          message.price = longToNumber(reader.int64() as Long);
-          continue;
-        case 4:
-          if (tag !== 34) {
+          if (tag !== 26) {
             break;
           }
 
@@ -794,7 +784,6 @@ export const Category = {
     return {
       description: isSet(object.description) ? globalThis.String(object.description) : "",
       id: isSet(object.id) ? globalThis.String(object.id) : "",
-      price: isSet(object.price) ? globalThis.Number(object.price) : 0,
       name: isSet(object.name) ? globalThis.String(object.name) : "",
     };
   },
@@ -807,9 +796,6 @@ export const Category = {
     if (message.id !== "") {
       obj.id = message.id;
     }
-    if (message.price !== 0) {
-      obj.price = Math.round(message.price);
-    }
     if (message.name !== "") {
       obj.name = message.name;
     }
@@ -823,7 +809,6 @@ export const Category = {
     const message = createBaseCategory();
     message.description = object.description ?? "";
     message.id = object.id ?? "";
-    message.price = object.price ?? 0;
     message.name = object.name ?? "";
     return message;
   },
@@ -1037,7 +1022,7 @@ export const UserPatchRequest = {
 };
 
 function createBaseUser(): User {
-  return { id: "", email: "" };
+  return { id: "", email: "", name: "" };
 }
 
 export const User = {
@@ -1048,6 +1033,9 @@ export const User = {
     if (message.email !== "") {
       writer.uint32(18).string(message.email);
     }
+    if (message.name !== "") {
+      writer.uint32(26).string(message.name);
+    }
     return writer;
   },
 
@@ -1072,6 +1060,13 @@ export const User = {
 
           message.email = reader.string();
           continue;
+        case 3:
+          if (tag !== 26) {
+            break;
+          }
+
+          message.name = reader.string();
+          continue;
       }
       if ((tag & 7) === 4 || tag === 0) {
         break;
@@ -1085,6 +1080,7 @@ export const User = {
     return {
       id: isSet(object.id) ? globalThis.String(object.id) : "",
       email: isSet(object.email) ? globalThis.String(object.email) : "",
+      name: isSet(object.name) ? globalThis.String(object.name) : "",
     };
   },
 
@@ -1096,6 +1092,9 @@ export const User = {
     if (message.email !== "") {
       obj.email = message.email;
     }
+    if (message.name !== "") {
+      obj.name = message.name;
+    }
     return obj;
   },
 
@@ -1106,6 +1105,7 @@ export const User = {
     const message = createBaseUser();
     message.id = object.id ?? "";
     message.email = object.email ?? "";
+    message.name = object.name ?? "";
     return message;
   },
 };
diff --git a/src/oracles/orders.json b/src/oracles/orders.json
index 090b6e922d8f555da56be1ed273a1e3c188fda96..e01451b86cbc3e64744f6beac1d79f692330fad0 100644
--- a/src/oracles/orders.json
+++ b/src/oracles/orders.json
@@ -1,6487 +1,6487 @@
 [
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ecf5ec9a-ee53-4d52-bc0e-2a8dbeaa8121",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3996c24d-6780-4891-ae9f-e3dc6da63a86",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "470ad1f3-bebe-4130-866d-210d117dab7d",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3b96ab4b-3eb1-48cf-b84f-5986dcab0b59",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "57d3983f-a2db-4b08-94b4-d7c01464d5d9",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0c269276-41dc-4a6e-aeae-dcc6074ab799",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "331d77b2-5511-42a1-a344-930d533f4235",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3b79a8e6-1687-4149-956a-1e15f1d919d0",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8e3cab96-bcbc-44cc-bfd3-cf3dabcd91c4",
         "products": [
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4a516496-b8be-428f-bee5-5f2c96abe6ca",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "12beb2f4-05a6-47aa-9941-c4ded68557a4",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1113ac36-3904-49f9-af31-2fa20520ef84",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a96c3402-4e0d-4c89-ad74-a7afe0c05ebf",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8b2927b0-0af0-4202-b3de-ae3e7c3317e7",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c6b1ab0a-9958-4aab-bb2f-feadf58f5807",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "399d8e00-1b8e-4288-92cd-7bc329437ec0",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "95fa7fa7-b524-4b37-bc2c-1f8a2b74d057",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "56c449e4-06e2-4208-a770-ecd1740a64ee",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a930eaf3-17da-440e-9ac0-e8128a12bc0b",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "52fa2067-79b2-49db-899a-2868f5ae2ccd",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6a38f243-544e-4c3f-a401-db73b5837556",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1f089cda-b650-47f6-a14a-ba8c74a8278c",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "abfd7a42-6064-4f5f-be3a-e3ea8b009421",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "78efda13-b724-48b5-aef2-dc00a6682f1f",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4a714cd0-d3b7-47e2-a4c7-6716229caeb5",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5c1ff49f-aec2-4fb4-9b99-b1ed4fb8431b",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5e03668b-4130-4209-aaed-e0e02cf354d7",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8fbb57f0-8b83-40a9-ba73-f4fd2f40211f",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "20ebe1d0-7819-47f2-8613-79f80d695f6e",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "674b37a2-5d62-400c-81c0-7db0b776c47e",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "63d0f380-d206-42ff-8b50-e688d8842413",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "518855fa-0579-4e9f-9482-f374119b3f51",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "40885ce9-a1b3-4e5d-84c7-9ff15f686f78",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3902bb5d-9363-44d3-8538-a37b484127ec",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7c6e880e-7eb5-417a-b3f6-fdd7770f3f5b",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c7ea3619-b598-4d47-9a76-c26e51be4c37",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a5c5675f-f68e-4b54-9655-6b935e942df6",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f4dde2b9-450a-4b77-9472-bca5fd889b84",
         "products": [
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8ecd5e53-714c-4256-88c0-dae8917c037f",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "306302d9-5f1e-4a2b-9f0c-fe61b632f60a",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "901b61ca-5759-44f3-836e-63ed0427ec34",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "66ae10e5-e387-4245-a884-08264fa5d7e2",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "30ef4117-5407-4e57-a146-7d7b5220b33b",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "89574048-65ef-4408-89bf-2bb157719adc",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bb6f0650-1f79-4945-b580-5d90c7711044",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "02358727-f939-4614-b110-af62117faa3f",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "60e9883a-7e88-4498-ae2f-da76350661cd",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a20436e7-8ce8-4e39-a46d-7713b48248a5",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7e45d3b2-7cb2-43a3-956b-fcf5dab30c00",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "cd56bc49-a957-4a06-bedd-14f5d7b33530",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "24952ae6-d98a-4b1d-8988-3f6f465a6f06",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3f4c6a86-5475-442a-a9e0-00fcb3dbbf59",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "61be05ce-c1d5-4106-b727-08407aab490c",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a9a4bb8f-131c-4069-bb7e-f09914516581",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ec1ab329-afaa-443b-9eac-c8be09ee135d",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "eee3463f-bb6b-4a12-8439-5bd367a0ee34",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4f2c782f-4ecb-4541-a2ec-221095fbbfc7",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b4fb4604-4593-4d6b-9f43-14c6c7b3ea48",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4f0bcc3f-f753-4f69-bdcc-79c67aa4548d",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9ef08713-0ac0-4d7a-97dc-0e10ba60e9c9",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6dd7146d-4b1c-49e6-9f4a-b0eb4583da09",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "396af38f-382c-4552-a1bb-df5e3f13693e",
         "products": [
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "68fcb41a-058b-4ee5-b3cf-7d4d25886937",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9c60b54b-6843-4eae-856e-379be6447af8",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "685ebea2-d849-4490-a290-7614fd4d64ae",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f07b3fb2-3b9a-4c20-be1d-df0c18b5738e",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0995d613-3e93-4db8-84d8-51f01eb8c801",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4fbf3db2-07bf-489a-b1d3-02b4732e1ea1",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6c8803be-2136-49ef-9a25-2fa2b4f71ee7",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0f61a3da-3eb7-4266-a37c-1f3918e0d249",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "956b3677-c8a4-4ca6-abb5-c52d0636eab1",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0ced8612-e57c-4beb-af0a-33c077845fd8",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9019c863-9160-4de0-8b16-7c90c7fd09ef",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "06d48071-e190-4731-9160-d2e1c6360b5d",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bdebafb5-80b7-48d9-802a-35f0a3bacaf0",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6b404d6a-3ee9-4db1-b687-64ea6b80fee3",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ab56c7db-c939-4757-91fc-f08962134218",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9221fb68-a8c3-4884-bd38-8ce15d60f84f",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c0ffe32e-c50d-4351-b818-b4da3d400ef8",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b62f3ff4-36d3-4e36-b306-93a1482d4759",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8e96e306-4315-4e57-9e9c-bf5c1c92ba4a",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "96e2fa14-e408-4c55-871a-6d5db545cac3",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7dd2bd86-ec01-4048-aa6e-7195d537386b",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "03a4cd72-fae2-48a5-a229-cf3850369077",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0c368b9d-9d35-4c2a-b232-204bcf9ea09c",
         "products": [
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "89689696-4232-44ec-b6da-fb1a96eb5166",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b32602a1-bd93-4d53-87f8-ae3037b0d0b0",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "00768d89-398b-4736-8f18-684338111c96",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bfaeff66-6af6-410e-b73b-846c0490e613",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3b008eca-9a5a-4b86-a3fd-9333a7df8a37",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7563acc2-33f4-4221-be55-584a60985b93",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6563b230-a3ee-4b58-963a-3f4892c19ea9",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e8a95af7-317c-49cd-bd0e-40f3ccd586e2",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7706db5d-e663-48d9-9f3e-0596cfe05d41",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "459f88aa-c8cc-4f57-8e2b-89ddd7bdf45c",
         "products": [
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ffe17b1b-081e-4411-9d1a-03b8f47859ff",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7c703160-7564-445b-96a0-bebdce365075",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5b9eaa2b-cf81-4f7a-a344-50f1f6148ec6",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "74873dc5-eeca-48d6-a9f5-d270dca2d491",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "718ad153-8f25-4cb7-bf8e-080d94fac930",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "557f2e7f-84ab-45e5-b2b8-849d25338b4f",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "fc10126d-7279-46a9-9b63-cb9a80b6cc55",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ada95fa3-e48a-4e14-98ae-ec794f902673",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "af98b1fa-42a5-4771-b671-40ea1d8d8067",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0a362f74-e8a1-4b63-bbdf-8f36480a9ee4",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8c065987-e720-45ea-9124-00b536369a6d",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7f46ba8d-af56-441a-81fa-5d4258c7ce20",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "52f3fd76-b4dd-48b3-9785-5f6cc724f9f0",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4d162f01-3246-4dfe-bfe4-acd9815f9f99",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6802dfb1-b3e5-4aec-8bdd-978e4219f57a",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "da422cf1-e05d-441b-8981-9d22a0f5adc7",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4fae8f9a-032e-4e72-bcc4-e012a439436c",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "fc221fdd-589b-4290-a1c0-7c2902bae54f",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "d41f464c-4304-4058-b39b-fae245f31b40",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6e46cfc2-8103-412e-a4f3-a448aa425680",
         "products": [
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5a0c0fb5-23a1-45a6-8510-a6c55155a543",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ba199ced-0de2-4566-9cdd-601e4c7f51c2",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4a8f393c-e063-4c56-a4b6-0e2d745af357",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4afc85f9-f514-43ae-b31c-6abec9ee7084",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8ae7c149-ac81-4ec9-ad90-a1bfadeb0ad5",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7ca0304d-81f6-43a4-ac88-6d7946d79e83",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e1f5aeb8-178f-48b4-8c6e-0ee8b9fc2812",
         "products": [
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "d82b229e-9c8a-4d77-9e99-c234dc2dbc4b",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0787287e-d21c-4cc4-ba14-3735f52b676c",
         "products": [
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f5222720-3246-4817-8d34-d69456b39dfa",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "35799296-83eb-4962-90b2-46cdca085c78",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bab39b4f-574f-4a60-8897-1a0e3e619723",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "77eb7217-2ac6-4ab2-8c3d-30e9017301e1",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3a93a9e4-9c6c-4f25-aeb8-7019c837484c",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "40e9ee18-2b9b-4b93-af35-5f0fb9416194",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c4f5dcea-ab44-406b-95ff-a163efa939ea",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "01a05576-7c2e-4452-a587-b47ca3ad81f0",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "518a535e-7f42-40ff-ae26-0f9a550c9eb7",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "2cc32a11-5a59-408b-a54c-2d270b36e9ee",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f494554f-64cb-41be-921f-eba5807cbfac",
         "products": [
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0ab65a39-47cf-4319-aa35-6970c9275241",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "80ecddc6-7f7c-4b82-8541-60287da2c1fe",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "d93a2fc5-e4e7-4c8f-82d3-3a1ab302fac8",
         "products": [
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "932f581a-eeb6-46f0-9c50-ea297d33cf20",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "39eded99-0768-4a71-aa49-6550b1de61bc",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "65b5ef32-c0d1-4d3b-96d8-2fcc151a2c39",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "84f9fdf4-f950-41a1-92d5-bc8a8c41b055",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "053614d4-3118-40b7-b840-9a0623f4cdd7",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9c077378-80cf-4b5c-b4be-ec538473c420",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "539de8f2-cb0a-4b56-8479-67879067441e",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6be08e2e-37fc-4068-a85f-5b4fb73eb198",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f6f73736-51b5-46c9-88fe-bae7a554f45a",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3b7299f5-9b21-48b7-b575-74c070f5ba86",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3c855c01-8ac4-4138-9f32-2638e9d17b6b",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ad133f47-4fee-40ae-8e91-151c2b8a896d",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "930133c5-1106-4358-9387-161a8a180062",
         "products": [
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b764b63e-7518-432a-bf52-3c0320ac00ee",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "aaffdfc3-6bec-4e5f-96ae-b162fb1145af",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "adeba3e9-fed8-4767-8dc4-b09d80925488",
         "products": [
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f7900e49-9550-4473-924d-7dea27bc6c87",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "64970f7b-0aa3-4398-bab2-78ee4bb67a8c",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "fe411cd9-9861-4bcf-aad2-c08a098d9392",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6bc9a954-d4a3-4f1b-95bc-8f4e418925e0",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "fba84a5a-2f49-4d44-819b-9b0f54d86954",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "582deef6-a209-4ddb-96b5-9eb8ea1a21a2",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "690cb16e-33c4-4348-9faf-f8f707b5816e",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e8e8ffd9-8c20-4a0f-bb11-9d8f3d6beb1f",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a1c4b9c8-1fe7-4e27-be2c-46cb1a6f0611",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b570f6e3-0b8f-4f0f-a57f-6ef09da02e3b",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "82aa8d4a-88d9-40cf-97b9-7d45bf11f7f6",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "63cd3648-afba-4e77-b4b4-6f9386ed691c",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "930812dc-e798-4fac-a1a7-5a02a1c047a0",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a9950bc0-644c-4441-b6bf-96ca13372a27",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "cbc60097-1c45-45b1-97b7-5bbd971ea8ad",
         "products": [
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c4d07b20-eac7-400d-8f01-4e4c7d241ce8",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "33778b79-eb16-481b-a517-3bd3f531e245",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f23edb09-cbb4-4ea6-a2a1-ddc1c4617b1b",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5a4f5017-13a1-4d05-99fc-751052c33b54",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "854e4046-5981-4d4c-a545-f7521baed38a",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7a9c4c67-519a-4e8c-8590-dd288c44dc9b",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ae7baa55-ea7c-430b-bc29-7d6c79e325ba",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4b132dd6-46ca-43d9-9772-df223e01eac8",
         "products": [
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7ba2b2c4-4f26-4a9a-96bd-993e03758f89",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "2b705889-44aa-4b64-9ef5-6efd4656d1d2",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8ecbbc10-ed59-4f2e-92fd-5854b43d06b2",
         "products": [
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "40268ae4-1c11-4167-92d4-1ce68a09336b",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "d88ed252-055f-4a81-8ad6-ebc604e36c11",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7dca402a-2ff7-4e11-83f0-066c6e298649",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "41918ad0-294e-42f4-83da-a80a69f8bb8f",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "998ee4e0-16d6-45b7-8b21-e12bab49e939",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "78b6a817-9041-4cea-8bbe-5b96731d4277",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c934f41c-9572-47ed-b8fa-318e8eed2812",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b08d3e26-2fc6-4604-b6e1-f0d57c8c653d",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ec6a65df-dfad-49b3-9b1b-edc8180fd2d1",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b88a1f04-a2c3-4e98-8b04-a655d3386597",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "716f1902-ebcb-4fc4-86b6-718a0fc8df3e",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "788faf9c-51e9-4c73-8cb3-2dfee4458764",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5f3dd8a8-8d5e-4bc5-a751-163a09bac85e",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "11b53663-273b-4a3a-862c-b97955407e2f",
         "products": [
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e2bb471c-f237-4a2c-9c46-109fb599b09e",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "52bc52b1-4334-4dbb-8dd4-669ccfef53fb",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3942b392-fa3c-45bd-b4a1-6bf21b7bf65b",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f9a2dd22-8204-4edd-9b5b-d47463e3ee73",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4617a5ac-1821-41b9-8b41-c829ea00a800",
         "products": [
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "715ec6f7-aadd-46eb-9685-da568630350e",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "69ba5dc9-21b4-4ddf-becd-f4c0b1a9c01e",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "226b9a00-c3f9-43e6-bbaa-4cde02173ee4",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "fd3489fe-bcad-4e2f-957f-49b611d0b8b0",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7329192f-fe40-4b3f-939f-1c7a474a2f03",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4e95d7b3-c97f-4028-b7f1-0b94ddbc9088",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0e50ef1f-193f-42be-9175-070d995cf1c7",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0ae8e62e-0547-46a1-bdb7-78a89d46fdbe",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "50a7ad95-1734-45c9-86c3-f8caf93ab0b7",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "759b9aac-da12-4702-b046-9440843586cc",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8aeac9ff-5b0a-4fe9-af88-0baf78aae361",
         "products": [
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b1822d7d-5cb8-4109-b746-d2a6348e49f9",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0e2e8d30-4df1-4959-8fea-7be787c6350d",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "53051508-5f9f-4741-96d5-378d10814cd0",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "602eee03-a1b0-48b2-9ebd-a2d7fbf3154c",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f771ea03-5767-46f4-8de4-c81e5708b093",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7db9afb3-4f57-4b2d-bea5-2a51089f185d",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0ddda9fc-06e7-4d0d-9c2d-cc3235feace7",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "acb3aa23-c0ce-4319-8e53-d3edcaeee9c6",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "292ea907-43de-4308-9eb9-2f5e37a9226e",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b6dd212b-0e3b-4570-9a75-c92e9409d883",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "2f8e37b3-41bd-492c-a647-d9fa6023d78b",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1f91d96a-faab-41ae-b6e0-9d5d834372dd",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "79954120-8510-4984-b791-aaf01def22da",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "41808544-a14d-46dd-a6eb-59c9227b612f",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8f091916-9da1-48f0-be6e-c4d6ce0f0fc2",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "159754fd-c90c-4c25-ba78-0ec722690eed",
         "products": [
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "01b8235e-c935-460f-a885-b729bd6c7165",
         "products": [
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "acde3411-4368-4533-af1d-81462474e8e8",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4ab3c49e-b0fd-48c8-812d-9a3c8b0bfffb",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "340a3b76-1fad-43fc-a739-8353409a285c",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c5c2679e-3ee2-4670-b3c2-4d832f56f71f",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0d654a96-788c-45d5-b374-ea4440a7b79f",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5203720a-a29e-496d-8625-cbf0d6bf2e88",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "56dd680f-7046-4f61-827e-669051db850e",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "10595f4f-e74a-4fc3-840b-5fb01a055e31",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "efe9daad-e67d-437f-a8ec-16d0cae8aa9e",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "917c983e-5c18-44a3-a21e-6abfd2907b02",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b8d9b45d-b50c-459a-9bd1-7d652e3029db",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "85c12a10-8c94-4b25-a3d2-a74dd93742a9",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1b253d1a-b8ef-48fa-bc6b-416a97b6b766",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "43a18c75-fd36-4123-bc40-d75fe2637cda",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ecb0e462-997b-4087-9075-68fbd2e9411d",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b0c2f919-3d1b-44bb-845c-fb503b8ccf21",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7718b87f-b8ef-4d2f-ad3f-34905813bb4e",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8d95da32-0caf-48a7-8020-8e67d038882f",
         "products": [
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ef932fda-205b-4ea0-8897-715d891d47c2",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "512aa3c0-83ba-411e-a4e3-5330ab54509e",
         "products": [
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1528cd84-a9f1-4736-b704-2199b700ba1c",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e7099737-117b-424a-9083-c8f2ce6f92e0",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "80ae9dc1-34f9-4282-b3fd-9a34f607201f",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "297300d3-bacc-4402-ac3d-89aea202fad9",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "60a4febc-cd56-48c9-994f-8199df18f8b9",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "29f5db75-c77e-4059-b6cb-5968aa537729",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "534b873d-3b80-4cfc-a250-9933f0526e7b",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "84623b9a-0dad-41a9-a0e7-8eb819d0e44d",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ffcba33a-ded6-49fd-8b36-85db9eaff428",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e6604e2c-a9f1-42bd-9aec-9ecb9db43eb1",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ee4e7633-ffa8-4a3d-a63c-429f4481a6c2",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "fad1b69b-9bec-4ce8-aa8b-6eefc67f204b",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3f101bdf-fb78-4f6d-875f-dffb8cf7a911",
         "products": [
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "72fd1530-8f95-46fd-8992-8bb251a473f4",
         "products": [
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0058cb76-26f9-4ec1-b36e-76da93112e84",
         "products": [
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "dc37c6f2-1663-432c-b7b3-2759dbed6d07",
         "products": [
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6a391cd5-9df3-481b-b3b8-813f446aabce",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7085a21e-6fc8-482b-8ab8-7ac49d22b1e7",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a8aac6fe-8ab8-40a7-aef1-5c448fd706d4",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "942ac0ca-be43-4242-9d00-3f205657a8c5",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "eb627d66-b7bf-463d-b84b-ae3f0f6e0287",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5f078e2c-5b87-457a-bcd5-cb3931157b8e",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "be3283ab-8744-4aa5-b6b4-90ee11572ab0",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bf43ca26-60e8-464f-9717-c2129d7c06f6",
         "products": [
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "653b69e9-466b-45ea-8cf7-ee89572a1ce3"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c15a77df-1adc-450f-b9ee-889661698f3d",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c404d7b8-c0ac-4557-9c40-ab92116dd215",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "03e33d97-dfb8-4af4-9553-f1aa0f1bb5f0",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "2d837ebf-b4a7-4e70-aba5-0ec8ec001af9",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a0850395-f88b-45e2-a928-5acc1a517ca8",
         "products": [
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c1c23b2a-687f-4306-a68e-79cc364abae6",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "67cdbeaf-f1c6-4102-b5ad-0599ea17f1ea",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9ce1bd13-6af0-4485-a532-bf1d0afc93f7",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bae120b5-c536-42ba-80e3-346ea4d2ce90",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "56e5c825-e7f2-4273-a6b4-cc7401bf6375",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4075fafe-f429-4c45-961d-10d5e8bcc210"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b9cd99d0-24fb-4223-9222-488d8b59b669",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "edd50b16-4980-4d38-9d33-c403042305c1",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b10ec563-cb36-4fc9-a6b2-d2d2fc9a32ea",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "59a29113-c63c-4064-af5c-11daeeefa730",
         "products": [
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b7152357-5f71-4e5c-b3b6-201aec47db5f",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "57fd9b20-6c85-4181-8025-591d2242def1",
         "products": [
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "60027e94-86d4-40e0-b9fd-27fdc392dc80",
         "products": [
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ec223a86-4dc1-4959-8f3c-cccac67c9f69",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "237c2c1d-76d8-4b0f-81fe-795efda9e7bc",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b1a8d3ab-4732-4eff-beb1-4470132b60b6",
         "products": [
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "76fabac8-b5dd-46e7-92cb-f412f5105d9f",
         "products": [
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8247bd75-704a-46d1-9320-08bd336be6cf",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f792e743-7604-41ad-b5cd-9cbe41495dfa",
         "products": [
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f5a9a743-17bb-4cc3-9a3f-72ca5a8f0639",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c910837e-162e-49f0-a27f-365b3e26a4f2",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bdf28226-db8e-4b69-9fae-41e8b141f7d0",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "da81723f-52fb-4363-9496-df8fb1e8cbb6",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3f5b4c99-7b78-4763-88a7-0d759d89ee73",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "d8580e2d-313f-4e0c-8bc2-f23c9d961eb8",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e4563a47-7758-4a59-b2fb-4b54dd7ef7a0",
         "products": [
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9b4808fa-06bb-4d2c-ad61-9e712fb8842d",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e52063df-61eb-428c-aaf7-5dd36977d7b7",
         "products": [
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9d8f9ecd-5747-4f93-9852-50ff70eb8e39",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5fd7ab49-e26d-4423-8e4b-f8be5a3f9747",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e361cf41-040c-46ab-bb0a-a05b65a8b06e",
         "products": [
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "665bf218-0a03-4bb0-9be7-6f69d7da577f",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bfe5d67b-7be0-4090-9fd7-6facba915c9e",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3a7392c1-ef81-416d-acf4-7b5f299dc6af",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6c271946-99e3-4021-b5c8-b9bfb92eab77",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "77679fc4-f8ad-4c08-90e2-f76d5b968a08",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "d9afec7d-bda7-4b23-8efd-789b4613d77b",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "00aef886-230e-4b56-a6f0-a912009aa7fb",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "75640405-a869-4f00-a984-c67dcf0d3730",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "08b6acef-3ce7-41e9-903c-cee69c195818",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8b782245-e1a9-4771-8ba7-2a5a44650457",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b13fe6e0-a7fa-4c33-a589-b64ba91040df",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "88eaaf41-7de1-4614-8aa2-d68fdb8d050c",
         "products": [
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f751d6f6-0ef8-470d-bd62-668b7e250c6e",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e522feec-32c6-4d76-95b1-a9ead7f6c8a0",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "13199011-d3ec-4288-8ce2-b87a28071a1c",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1735d3d7-3774-4b1c-9933-d117dabeb708",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "5c2933f1-64b8-463e-a6a1-c77cd876f128"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0ba56625-fac5-489b-9e69-442cb8488f42",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3a324ec3-7087-4ba1-8d41-7275ff0a8f1a",
         "products": [
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a075bfe5-7852-4bd6-9174-8b5548b4d6db",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ea37cef3-9d08-4833-a5f5-1ab150edb798",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "d937b1f1-011e-4a3f-9dbe-e8f4d6ce0e1e",
         "products": [
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c4e100ba-5652-4fbf-b694-c97f8ab9bdd3",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5e59960f-031b-446e-8e33-3cdae2ab4af1",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "59f35242-cfa8-456f-89a8-21c1ea20c612",
         "products": [
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3530fb0b-3e89-4688-9f81-975c1c1dfe45",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "25008182-6e1a-455c-b1cb-073d3fea81ea",
         "products": [
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "48832a18-bf27-48c4-a91c-e4ab688ad59f",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b244d34f-5f0c-4ce3-b558-9e36645c115b",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "97b95e03-a85e-43d5-ad18-ff7d5b4a341e",
         "products": [
             {
                 "productId": "e339b9e2-729a-430d-9426-06ee042e242d",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b562364a-a85c-4131-948f-33df3931215b",
         "products": [
             {
                 "productId": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "fd3535d3-8b08-4270-bbe2-2928b479a038",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "db6a42e4-243b-48d2-9bd1-f62c151ea2a2",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "887c38f2-7228-4ba9-ba30-0b057fea062b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1cee535e-148e-48a9-bae0-7c9c87760bd5",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7e8c7c0f-3e23-4b90-9022-e3320c40b8c7",
         "products": [
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bf750996-1222-4c80-b89f-3e16cb43b624",
         "products": [
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f88a3708-b7f9-4076-9082-4d92a3d54d31",
         "products": [
             {
                 "productId": "e395da27-185b-4404-937e-82bec997c274",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f18b0d28-eaa0-4560-a5c2-abd56d923bd8",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "0b5982ed-f5de-48fb-939f-0e4658282523",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "f10d8d2c-73f4-45da-8b4c-b7eb20e669f1",
         "products": [
             {
                 "productId": "9a438b65-a653-4408-802f-27ce83048606",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "da8b11ad-6075-4a17-b693-c94af52af31e",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "59ea7ec8-ee3d-4e25-b9c4-3e887b8a9051",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "a15f64a3-97e3-4ee9-b469-59461310558a",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "62dbd8ce-518f-4a77-af0c-7b31d16352e9",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "2d83ef9a-aa63-4253-97c1-dad426956390",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "eddca3bc-caa2-4043-8f3b-b02616ffd29f",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5f96531f-7bdb-44c9-984f-916282ee9879",
         "products": [
             {
                 "productId": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "006265f1-9fbd-48c5-aa41-ff98e6aa0ea6",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "51ce4bcf-6b5f-4d75-8c95-4f6afc323625",
         "products": [
             {
                 "productId": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3d4f2c9e-67f8-4d80-9d51-82907e271d90",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "522f3760-5875-4712-978f-c00d37f03f27",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "cd06ad9c-367c-41bd-8473-46a58b836e95"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "01bcde22-2a34-4382-ab3a-c6aea899b1ff",
         "products": [
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "0c2e760c-75e2-4140-a73b-2b5a5c535b7e",
         "products": [
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "b7f21226-4e0f-461b-a780-2c2cb6109aed",
         "products": [
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "21751667-f8c6-4834-bc45-d1680efc2892",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7c43165a-ecc5-464d-b1a7-de6e84a324db",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "94983fec-470b-4105-a113-d75830cce0ab",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "17e4517a-6498-4043-ac21-ceb0ae60bd9b",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "8c21b251-ae6a-4d70-99c4-b40111a92b14",
         "products": [
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "3a925678-1b5f-4cdd-865b-27f4ae9846b6",
         "products": [
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4dcc9dd8-225b-4e7e-924a-54e119e5aa51",
         "products": [
             {
                 "productId": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "6e1af0f5-1474-4b26-834c-3af1f22573c0",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "b6463b72-650f-46d8-8c6e-ccdd88a584b6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1b7c91ed-993b-44a7-a9a6-a955251f0349",
         "products": [
             {
                 "productId": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "2743d418-6217-4c6f-a59d-ab7f9d2e7aee",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "c62f7a81-f525-4a27-b818-c475f2a2b355",
         "products": [
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "b34a855e-0fb2-4892-ad6d-5c08577abf01"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ba764161-a51c-4c4d-a825-12ab8b5f412c",
         "products": [
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "1acd446b-5666-4c06-b3f3-18f53abfb4ec",
         "products": [
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "6751b8e7-7daf-419e-8476-82f54dc99190"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "5a879ca2-cd07-4125-a4d9-fda09278cbec",
         "products": [
             {
                 "productId": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "b30ea24a-0af3-4327-83e9-21f7d39e68d8"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "bf996059-8dab-4689-9f75-8d9831d2b4c1",
         "products": [
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "7c76119a-0942-4e50-98e7-4704cc9da0c6",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "2ec90391-a901-4ece-92d6-8328e3546e24",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "888cc892-afd3-45e1-ab1c-ac98d58e934b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "4f6b131b-981b-44b2-bb31-d0a539b24e3c",
         "products": [
             {
                 "productId": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ae525497-129a-4b76-bdca-5953128cd970",
         "products": [
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-                "quantity": "1"
+                "quantity": 1
             },
             {
                 "productId": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "dc58a5a8-10a4-408d-8344-8044fb9d0f11",
         "products": [
             {
                 "productId": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-                "quantity": "3'}}}]"
+                "quantity": 3
             }
         ],
         "userId": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "149860b9-775e-4053-a9f8-33c169bf49f3",
         "products": [
             {
                 "productId": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "57eea59d-1136-462e-ae40-910e26f79168"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "9c8f2e50-d280-4a3b-8c9c-d77d0433829f",
         "products": [
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "4"
+                "quantity": 4
             },
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "3"
+                "quantity": 3
             },
             {
                 "productId": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-                "quantity": "2'}}}]"
+                "quantity": 2
             }
         ],
         "userId": "6ba38195-e12d-4950-8f94-002c0d566867"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "e3b199b1-d461-443d-891c-135f86186597",
         "products": [
             {
                 "productId": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "816f6266-5057-4048-b64c-8dcca2912c14",
         "products": [
             {
                 "productId": "d24e729f-3111-4364-a3d2-210c5da3febb",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "ec03c078-4a70-466f-b599-b17902ad3e78",
         "products": [
             {
                 "productId": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-                "quantity": "2"
+                "quantity": 2
             },
             {
                 "productId": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-                "quantity": "1'}}}]"
+                "quantity": 1
             }
         ],
         "userId": "d07bddbf-261f-42cf-91a3-f230e56b3f7b"
     },
     {
-        "totalAmount": "0",
+        "totalAmount": 0,
         "id": "64a4b93e-9db8-4d21-aadc-6228bcbdabf3",
         "products": [
             {
                 "productId": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-                "quantity": "4'}}}]"
+                "quantity": 4
             }
         ],
         "userId": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5"
diff --git a/src/oracles/products.json b/src/oracles/products.json
index e9c75c24f37afa345e65f8e12a556ce86bdeb9a1..fbe4fb3ec040b3eab6e42225206f776c2ab7e219 100644
--- a/src/oracles/products.json
+++ b/src/oracles/products.json
@@ -1,306 +1,306 @@
 [
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "183",
+        "stock": 183,
         "description": "Socks for sale",
         "id": "c21a4257-afe6-4447-ab6a-d29618ee8d8d",
-        "price": "4",
+        "price": 4,
         "name": "Socks"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "67",
+        "stock": 67,
         "description": "Skirt for sale",
         "id": "b0b7c66e-5be4-460f-afef-43bc0d8e0dfc",
-        "price": "8",
+        "price": 8,
         "name": "Skirt"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "177",
+        "stock": 177,
         "description": "Vanity for sale",
         "id": "94983fec-470b-4105-a113-d75830cce0ab",
-        "price": "10",
+        "price": 10,
         "name": "Vanity"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "38",
+        "stock": 38,
         "description": "Underwear for sale",
         "id": "76877de1-cc00-4347-b4d9-57125e4cea2e",
-        "price": "3",
+        "price": 3,
         "name": "Underwear"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "123",
+        "stock": 123,
         "description": "Leggings for sale",
         "id": "89a8e8e3-f62b-4082-8105-3ad994fd94cd",
-        "price": "9",
+        "price": 9,
         "name": "Leggings"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "153",
+        "stock": 153,
         "description": "Cabinet for sale",
         "id": "8165bf7a-d3c7-466e-862d-babd9deb8001",
-        "price": "7",
+        "price": 7,
         "name": "Cabinet"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "193",
+        "stock": 193,
         "description": "Sweater for sale",
         "id": "27254a5c-ac7a-4031-8d02-0ff2834f6bd3",
-        "price": "12",
+        "price": 12,
         "name": "Sweater"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "116",
+        "stock": 116,
         "description": "Chair for sale",
         "id": "2d1345eb-d630-48a8-9307-0f71bc8380e8",
-        "price": "19",
+        "price": 19,
         "name": "Chair"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "32",
+        "stock": 32,
         "description": "Desk for sale",
         "id": "fdfb3bc5-4684-478a-86c9-0e34a4db42f8",
-        "price": "2",
+        "price": 2,
         "name": "Desk"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "123",
+        "stock": 123,
         "description": "Jeans for sale",
         "id": "8a9e5bda-ad32-47fd-842b-773c5c5b67f7",
-        "price": "13",
+        "price": 13,
         "name": "Jeans"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "35",
+        "stock": 35,
         "description": "Bench for sale",
         "id": "19b006ff-c340-4151-916a-dbbbcb717ddc",
-        "price": "11",
+        "price": 11,
         "name": "Bench"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "83",
+        "stock": 83,
         "description": "Shoes for sale",
         "id": "9a438b65-a653-4408-802f-27ce83048606",
-        "price": "17",
+        "price": 17,
         "name": "Shoes"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "37",
+        "stock": 37,
         "description": "Dining-table for sale",
         "id": "4e544aa2-9fb8-4fc3-9b5f-1efe995983b4",
-        "price": "6",
+        "price": 6,
         "name": "Dining-table"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "169",
+        "stock": 169,
         "description": "Coat for sale",
         "id": "8b4dec03-c4a6-469a-b514-6705f01df75e",
-        "price": "10",
+        "price": 10,
         "name": "Coat"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "9",
+        "stock": 9,
         "description": "Shorts for sale",
         "id": "56f03f7c-9111-44a3-bdd2-2457252034f3",
-        "price": "6",
+        "price": 6,
         "name": "Shorts"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "198",
+        "stock": 198,
         "description": "Shirt for sale",
         "id": "fffdf35d-2ba9-41f3-823f-01cd094965e0",
-        "price": "7",
+        "price": 7,
         "name": "Shirt"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "160",
+        "stock": 160,
         "description": "T-shirt for sale",
         "id": "e395da27-185b-4404-937e-82bec997c274",
-        "price": "18",
+        "price": 18,
         "name": "T-shirt"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "170",
+        "stock": 170,
         "description": "Hat for sale",
         "id": "1efaecf3-56fb-4abc-8fa6-8cc0520c15c3",
-        "price": "3",
+        "price": 3,
         "name": "Hat"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "148",
+        "stock": 148,
         "description": "Sideboard for sale",
         "id": "6557a4a9-c06b-4c43-9b81-16453ef20a13",
-        "price": "13",
+        "price": 13,
         "name": "Sideboard"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "45",
+        "stock": 45,
         "description": "Dress for sale",
         "id": "ab8cd362-6dbd-4fd5-a2bc-6db57ec5b59d",
-        "price": "11",
+        "price": 11,
         "name": "Dress"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "18",
+        "stock": 18,
         "description": "Shelves for sale",
         "id": "cfd91268-4da5-4fa7-ad23-4b8763477a2c",
-        "price": "4",
+        "price": 4,
         "name": "Shelves"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "13",
+        "stock": 13,
         "description": "Drawers for sale",
         "id": "62071cbb-1d66-40f3-9a03-7ec4df782a1f",
-        "price": "3",
+        "price": 3,
         "name": "Drawers"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "162",
+        "stock": 162,
         "description": "Ottoman for sale",
         "id": "d24e729f-3111-4364-a3d2-210c5da3febb",
-        "price": "4",
+        "price": 4,
         "name": "Ottoman"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "31",
+        "stock": 31,
         "description": "Bench for sale",
         "id": "95ebdf10-bd0e-4288-b450-46fefd3204af",
-        "price": "2",
+        "price": 2,
         "name": "Bench"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "199",
+        "stock": 199,
         "description": "Lamp for sale",
         "id": "bd884af0-b42a-45bb-b0b4-7156219caecd",
-        "price": "6",
+        "price": 6,
         "name": "Lamp"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "60",
+        "stock": 60,
         "description": "Blouse for sale",
         "id": "16fe8ae3-21de-41b7-8a9b-df461feff8b1",
-        "price": "3",
+        "price": 3,
         "name": "Blouse"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "180",
+        "stock": 180,
         "description": "Suit for sale",
         "id": "bb33bf85-ddab-4f2e-b186-e478c90ea1a9",
-        "price": "17",
+        "price": 17,
         "name": "Suit"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "91",
+        "stock": 91,
         "description": "Scarf for sale",
         "id": "5d60a4e5-a052-4589-88c7-19fbf7745f98",
-        "price": "17",
+        "price": 17,
         "name": "Scarf"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "189",
+        "stock": 189,
         "description": "Nightstand for sale",
         "id": "96dcddba-6f77-4f24-aaef-15b9a8f6807e",
-        "price": "11",
+        "price": 11,
         "name": "Nightstand"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "1",
+        "stock": 1,
         "description": "Sofa for sale",
         "id": "5d0f6935-d94f-44d4-95d0-fdab6b5b50a4",
-        "price": "11",
+        "price": 11,
         "name": "Sofa"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "141",
+        "stock": 141,
         "description": "Bed for sale",
         "id": "be78d5a2-774a-480c-8370-0d1a4e4a62c1",
-        "price": "18",
+        "price": 18,
         "name": "Bed"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "173",
+        "stock": 173,
         "description": "Dresser for sale",
         "id": "522f3760-5875-4712-978f-c00d37f03f27",
-        "price": "7",
+        "price": 7,
         "name": "Dresser"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "18",
+        "stock": 18,
         "description": "Jacket for sale",
         "id": "cd8bfb4c-7cd2-42a4-9705-e6a35f1a79aa",
-        "price": "12",
+        "price": 12,
         "name": "Jacket"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "144",
+        "stock": 144,
         "description": "Tie for sale",
         "id": "e339b9e2-729a-430d-9426-06ee042e242d",
-        "price": "13",
+        "price": 13,
         "name": "Tie"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "86",
+        "stock": 86,
         "description": "Pants for sale",
         "id": "2ec90391-a901-4ece-92d6-8328e3546e24",
-        "price": "15",
+        "price": 15,
         "name": "Pants"
     },
     {
         "categoryId": "84ba248e-9353-4bc3-956d-71d7c5669bb0",
-        "stock": "162",
+        "stock": 162,
         "description": "Hoodie for sale",
         "id": "1de8bff6-6986-4a95-ae8b-7bd41296f3ae",
-        "price": "9",
+        "price": 9,
         "name": "Hoodie"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "100",
+        "stock": 100,
         "description": "Bookshelf for sale",
         "id": "0b5982ed-f5de-48fb-939f-0e4658282523",
-        "price": "14",
+        "price": 14,
         "name": "Bookshelf"
     },
     {
         "categoryId": "72b50752-e3b1-4345-b3b0-d16cb4d4f48e",
-        "stock": "169",
+        "stock": 169,
         "description": "Wardrobe for sale",
         "id": "3fdb58ff-b4ce-4a25-8457-1ea0f38e1831",
-        "price": "6",
+        "price": 6,
         "name": "Wardrobe"
     }
 ]
\ No newline at end of file
diff --git a/src/oracles/users.json b/src/oracles/users.json
index a5a89be223a03eb44ff0e65cc2df7bcfb8ccb5b8..e68c3f166363ded2a66c2b7f77aeab8c6cefa358 100644
--- a/src/oracles/users.json
+++ b/src/oracles/users.json
@@ -1,120 +1,100 @@
 [
     {
-        "password": "z5M7Mxm",
         "id": "cd06ad9c-367c-41bd-8473-46a58b836e95",
         "email": "IsabellaAnderson@gmail.com",
         "name": "Isabella Anderson"
     },
     {
-        "password": "T3qCmfC",
         "id": "b34a855e-0fb2-4892-ad6d-5c08577abf01",
         "email": "MichaelJohnson@gmail.com",
         "name": "Michael Johnson"
     },
     {
-        "password": "Ma238o6G",
         "id": "4075fafe-f429-4c45-961d-10d5e8bcc210",
         "email": "BenjaminDavis@gmail.com",
         "name": "Benjamin Davis"
     },
     {
-        "password": "5D4IPlV5S",
         "id": "4cd2f3df-56f4-49e8-a9c7-d1bda618ed57",
         "email": "SophiaJones@gmail.com",
         "name": "Sophia Jones"
     },
     {
-        "password": "6z0JK",
         "id": "2ea2c512-9b3f-4c2f-ae7c-f179621cccbc",
         "email": "OliviaSmith@gmail.com",
         "name": "Olivia Smith"
     },
     {
-        "password": "aXEa8Np70",
         "id": "6ba38195-e12d-4950-8f94-002c0d566867",
         "email": "SophiaBrown@gmail.com",
         "name": "Sophia Brown"
     },
     {
-        "password": "m4F8z",
         "id": "57eea59d-1136-462e-ae40-910e26f79168",
         "email": "JohnAnderson@gmail.com",
         "name": "John Anderson"
     },
     {
-        "password": "iouWFvp",
         "id": "4b02147f-fd02-46a8-9bd2-98bed9fe64c6",
         "email": "AvaWilson@gmail.com",
         "name": "Ava Wilson"
     },
     {
-        "password": "abbDqY",
         "id": "5bc36ac6-f5fb-4a54-89aa-0b6f41cf0942",
         "email": "WilliamBrown@gmail.com",
         "name": "William Brown"
     },
     {
-        "password": "nO8bq",
         "id": "d07bddbf-261f-42cf-91a3-f230e56b3f7b",
         "email": "JamesWilliams@gmail.com",
         "name": "James Williams"
     },
     {
-        "password": "ly2Fg",
         "id": "888cc892-afd3-45e1-ab1c-ac98d58e934b",
         "email": "OliviaDavis@gmail.com",
         "name": "Olivia Davis"
     },
     {
-        "password": "GRS5l",
         "id": "51ff1b23-cf4c-481d-8db9-bfac9cf1ca67",
         "email": "MichaelWilson@gmail.com",
         "name": "Michael Wilson"
     },
     {
-        "password": "BFF19",
         "id": "b6463b72-650f-46d8-8c6e-ccdd88a584b6",
         "email": "WilliamSmith@gmail.com",
         "name": "William Smith"
     },
     {
-        "password": "4tzNscE",
         "id": "5c2933f1-64b8-463e-a6a1-c77cd876f128",
         "email": "EmmaGarcia@gmail.com",
         "name": "Emma Garcia"
     },
     {
-        "password": "Hii8mv",
         "id": "653b69e9-466b-45ea-8cf7-ee89572a1ce3",
         "email": "EmmaJohnson@gmail.com",
         "name": "Emma Johnson"
     },
     {
-        "password": "XRssbrN7q",
         "id": "887c38f2-7228-4ba9-ba30-0b057fea062b",
         "email": "IsabellaMiller@gmail.com",
         "name": "Isabella Miller"
     },
     {
-        "password": "LVbkgl3LNk",
         "id": "6751b8e7-7daf-419e-8476-82f54dc99190",
         "email": "JamesWilliams@gmail.com",
         "name": "James Williams"
     },
     {
-        "password": "MfaOad",
         "id": "b30ea24a-0af3-4327-83e9-21f7d39e68d8",
         "email": "AvaMiller@gmail.com",
         "name": "Ava Miller"
     },
     {
-        "password": "AVBFSjL",
         "id": "fcea5204-b631-40bd-a005-6c8ebf1f8ce5",
         "email": "BenjaminGarcia@gmail.com",
         "name": "Benjamin Garcia"
     },
     {
-        "password": "tS5icoW",
         "id": "aff2daf4-4a91-423e-ba1f-88ccc0589a0c",
         "email": "JohnJones@gmail.com",
         "name": "John Jones"
diff --git a/src/proto/app.proto b/src/proto/app.proto
index f223b1646d677346864f9f6b20002ee7c8876f72..65b499f2dca44a0aee798e1d0f9f6179685b11b0 100644
--- a/src/proto/app.proto
+++ b/src/proto/app.proto
@@ -77,8 +77,7 @@ message Orders {
 message Category {
     string description = 1;
     string id = 2;
-    int64 price = 3;
-    string name = 4;
+    string name = 3;
 }
 
 message Categories {
@@ -99,6 +98,7 @@ message UserPatchRequest {
 message User {
     string id = 1;
     string email = 2;
+    string name = 3;
 }
 
 message Users {
diff --git a/src/testing.ts b/src/testing.ts
index 4a62b5176d453c6453de6567564bc763977fcb96..094291fac053a5c8d1765d06718075c835b5dc05 100644
--- a/src/testing.ts
+++ b/src/testing.ts
@@ -10,8 +10,19 @@ const runTest: (func: () => any, expected?: any) => Promise<TestResult> = async
   const result = await func();
   const end = performance.now();
 
+  const pass = expected ? (_.isEqual(result.payload, expected) || _.differenceWith(expected, result.payload, _.isEqual).length == 0) && result.ok : result.ok;
+
+  if (!pass) {
+    console.log('failed.')
+    console.log('Expected:')
+    console.log(expected)
+    console.log('Received:')
+    console.log(result.payload)
+    console.log('----------')
+  }
+
   return {
-    ok: expected != null ? result.ok && _.isMatch(result.payload, expected) : result.ok,
+    ok: pass,
     time: end - start
   };
 }
diff --git a/src/tests/grpcTests.ts b/src/tests/grpcTests.ts
index 377bd2edc645359cd0fff97fff3259c649ff7dd4..b605a211b069225f908912f4e0dff3f202bb2e91 100644
--- a/src/tests/grpcTests.ts
+++ b/src/tests/grpcTests.ts
@@ -41,7 +41,7 @@ export default class GrpcTestSuite implements ITestSuite {
     public async testAllProducts(categoryId?: string): Promise<any> {
         try {
             const data = await this.client.getAllProducts({ categoryId });
-            return { payload: data, ok: true };
+            return { payload: data.products, ok: true };
         } catch (e) {
             console.error(e);
             return { payload: null, ok: false };
@@ -62,7 +62,7 @@ export default class GrpcTestSuite implements ITestSuite {
     public async testAllCategories(): Promise<any> {
         try {
             const data = await this.client.getAllCategories({});
-            return { payload: data, ok: true };
+            return { payload: data.categories, ok: true };
         } catch (e) {
             console.error(e);
             return { payload: null, ok: false };
@@ -72,7 +72,7 @@ export default class GrpcTestSuite implements ITestSuite {
     public async testAllOrders(): Promise<any> {
         try {
             const data = await this.client.getAllOrders({});
-            return { payload: data, ok: true };
+            return { payload: data.orders, ok: true };
         } catch (e) {
             console.error(e);
             return { payload: null, ok: false };
@@ -82,7 +82,7 @@ export default class GrpcTestSuite implements ITestSuite {
     public async testOrdersByUser(id: string): Promise<any> {
         try {
             const data = await this.client.getAllUserOrders({ id });
-            return { payload: data, ok: true };
+            return { payload: data.orders, ok: true };
         } catch (e) {
             console.error(e);
             return { payload: null, ok: false };
@@ -102,7 +102,7 @@ export default class GrpcTestSuite implements ITestSuite {
     public async testAllUsers(): Promise<any> {
         try {
             const data = await this.client.getAllUsers({});
-            return { payload: data, ok: true };
+            return { payload: data.users, ok: true };
         } catch (e) {
             console.error(e);
             return { payload: null, ok: false };
diff --git a/src/tests/restTests.ts b/src/tests/restTests.ts
index 78ed9a5951205de427307bcbf703d8127d4afe1c..2c3a56257e40c379f972847832694b7573ef1e46 100644
--- a/src/tests/restTests.ts
+++ b/src/tests/restTests.ts
@@ -206,16 +206,27 @@ export default class RestTestSuite implements ITestSuite {
                 time: 0
             }
         };
+        console.log('randomProduct');
         results.randomProduct = await avgRuntime(async () => await this.testRandomProduct(), iterations);
+        console.log('userById');
         results.userById = await avgRuntime(async () => await this.testUserById(constants.TEST_USER_ID), iterations, constants.EXPECTED_USER);
+        console.log('allProducts');
         results.allProducts = await avgRuntime(async () => await this.testAllProducts(), iterations, constants.EXPECTED_PRODUCTS);
+        console.log('productById');
         results.productById = await avgRuntime(async () => await this.testProductById(constants.TEST_PRODUCT_ID), iterations, constants.EXPECTED_PRODUCT);
+        console.log('allCategories');
         results.allCategories = await avgRuntime(async () => await this.testAllCategories(), iterations, constants.EXPECTED_CATEGORIES);
+        console.log('allOrders');
         results.allOrders = await avgRuntime(async () => await this.testAllOrders(), iterations, constants.EXPECTED_ORDERS);
+        console.log('ordersByUser');
         results.ordersByUser = await avgRuntime(async () => await this.testOrdersByUser(constants.TEST_USER_ID), iterations, constants.EXPECTED_ORDERSBYUSER);
+        console.log('orderById');
         results.orderById = await avgRuntime(async () => await this.testOrderById(constants.TEST_ORDER_ID), iterations, constants.EXPECTED_ORDER);
+        console.log('allUsers');
         results.allUsers = await avgRuntime(async () => await this.testAllUsers(), iterations, constants.EXPECTED_USERS);
+        console.log('insertOrder');
         results.insertOrder = await avgRuntime(async () => await this.testInsertOrder({ id: uuid(), ...constants.TEST_ORDER }), iterations);
+        console.log('updateUser');
         results.updateUser = await avgRuntime(async () => await this.updateUser(constants.TEST_UPDATE), iterations);
 
         return results;
diff --git a/src/types.ts b/src/types.ts
index c867a8c7952134f506aa0ad408385dfbcd5f84f1..cb3b83275fae46c02723ef40d945102a7cc7d69a 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -50,6 +50,7 @@ export type UserPatchRequest = {
 
 export type User = {
     id: string;
+    name: string;
     email: string;
 }