swiftApi.swift 57.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
//
//  swiftApi.swift
//  WarplySDKFrameworkIOS
//
//  Created by Βασιλης Σκουρας on 21/4/22.
//

import Foundation
import SwiftUI

public struct GlobalVariables {
    static var campaigns: Array<swiftApi.CampaignItemModel> = []
    static var customerState: swiftApi.CustomerStateModel?
    static var userTag: String = ""
    static var dfyCoupons: Array<swiftApi.ActiveDFYCouponModel> = []
    static var couponList: Array<swiftApi.CouponItemModel> = []
    static var loyaltyBadge: swiftApi.LoyaltyBadgeModel = swiftApi.LoyaltyBadgeModel()
}

public class swiftApi {

    public init() {
        
    }
    
    public func getUserTag() -> String {
        return UserDefaults.standard.string(forKey: "userTag") ?? ""
    }

    public func setUserTag(_ newUserTag: String) -> Void {
        UserDefaults.standard.set(newUserTag, forKey: "userTag")
    }
    
    public class DFY {
        let couponCode: String?
        let merchantId: String?
        
        init(couponCode: String, merchantId: String) {
            self.couponCode = couponCode
            self.merchantId = merchantId
        }
    }
    
    public func setDFY(couponCode: String, merchantId: String) {
        DFY.init(couponCode: couponCode, merchantId: merchantId)
    }

    public class activeDFYCoupons {
        let campaignIds: Array<String>
        
        init(campaignIds: Array<String>) {
            self.campaignIds = campaignIds
        }
    }
    
    public func setActiveDFYCoupons(dfyCoupons: Array<ActiveDFYCouponModel>) {
        GlobalVariables.dfyCoupons = dfyCoupons
    }
    
    public class CCMSLoyaltyCampaigns {
        let campaigns: Array<Dictionary<String, String>>
        
        init(campaigns: Array<Dictionary<String, String>>) {
            self.campaigns = campaigns
        }
    }
    
    public func setCCMSLoyaltyCampaigns(campaigns: Array<LoyaltyContextualOfferModel>) {
        let ccmsCampaign: Array<LoyaltyContextualOfferModel> = campaigns
    }
    
    public func getActiveDFYCoupons() -> Array<ActiveDFYCouponModel> {
        return GlobalVariables.dfyCoupons
    }

    
    public class CouponSetItemModel {
        public let uuid: String?
        public let admin_name: String?
        public let name: String?
        public let img_preview: String?
        public let expiration: String?
        public let description: String?
        public let short_description: String?
        public let discount: String?
        public let sorting: Int?
        public let inner_text: String?
        public let buyable: Bool?
        public let visible: Bool?
        public let terms: String?
        
        public init(dictionary: [String: Any]) {
            self.uuid = dictionary["uuid"] as? String? ?? ""
            self.admin_name = dictionary["admin_name"] as? String? ?? ""
            self.name = dictionary["name"] as? String? ?? ""
            self.img_preview = dictionary["img_preview"] as? String? ?? ""
            self.description = dictionary["description"] as? String? ?? ""
            self.short_description = dictionary["short_description"] as? String? ?? ""
            self.discount = dictionary["discount"] as? String? ?? ""
            self.sorting = dictionary["sorting"] as? Int? ?? nil
            self.inner_text = dictionary["inner_text"] as? String? ?? ""
            self.buyable = dictionary["buyable"] as? Bool? ?? false
            self.visible = dictionary["visible"] as? Bool? ?? false
            self.terms = dictionary["terms"] as? String? ?? ""
            
            let expirationObject = dictionary["expiration"] as? [String: Any]? ?? ["":""]
            let expirationString = expirationObject?["value"] as? String? ?? ""
            
    //      Example expirationString: Optional(2022-12-05 01:55)
            
            let dateFormatter = DateFormatter()
            dateFormatter.dateFormat = "yyyy-MM-dd hh:mm"
            if let date = dateFormatter.date(from: expirationString ?? "") {
                dateFormatter.dateFormat = "dd/MM/yyyy"
                let resultString = dateFormatter.string(from: date)
                self.expiration = resultString
            } else {
                self.expiration = ""
            }
            
            
        }
        
//        var asDictionary : [String:Any] {
//          let mirror = Mirror(reflecting: self)
//          let dict = Dictionary(uniqueKeysWithValues: mirror.children.lazy.map({ (label:String?, value:Any) -> (String, Any)? in
//            guard let label = label else { return nil }
//            return (label, value)
//          }).compactMap { $0 })
//          return dict
//        }
    }

    public class CouponSetsDataModel {
        var data: Array<CouponSetItemModel> = []

        init() {
        }

        var getData: Array<CouponSetItemModel> {
            get { // getter
                return data
            }
        }
        
        func getCouponSetsData(_ getCouponSetsCallback: @escaping (_ couponSetsData: Array<CouponSetItemModel>?) -> Void) -> Void {
            
            let instanceOfMyApi = MyApi()
            var couponSets: [AnyHashable : Any]?
            var couponSetsArray:Array<CouponSetItemModel> = []
            
            
            instanceOfMyApi.getCouponsetsAsync(true, andVisible: true, andUuids: nil, couponSetsCallback, failureBlock: couponSetsFailureCallback)
            
            func couponSetsCallback(_ couponSetsData: [AnyHashable : Any]?) -> Void {
                couponSets = couponSetsData ?? ["":""]
                
                if let myCouponsSetsDictionary = couponSets as? [String : AnyObject] {
                    let couponSetsData = (myCouponsSetsDictionary["MAPP_COUPON"] as! NSArray)
                    
                    for couponset in couponSetsData {
                        let tempCouponset = CouponSetItemModel(dictionary: couponset as! [String : Any])
                        couponSetsArray.append(tempCouponset)
                    }
                    
                }
                
                getCouponSetsCallback(couponSetsArray)
            }
            
            func couponSetsFailureCallback(_ error: Error?) -> Void {
                print("getCouponSets error: ")
                getCouponSetsCallback(nil)
            }
            
        }
    }

    public func getCouponSetsAsync(_ getCouponSetsCallback: @escaping (_ couponSetsData: Array<CouponSetItemModel>?) -> Void) -> Void {
        CouponSetsDataModel().getCouponSetsData(getCouponSetsCallback)
    }
    
    public func getCouponSets() -> Array<CouponSetItemModel> {
        return CouponSetsDataModel().getData
    }
    
    
    public class CouponItemModel {
        public let couponset_uuid: String?
        public let name: String?
        public let image: String?
        public let expiration: String?
        public let description: String?
        public let discount: String?
        public let coupon: String?
        public let category: String?
        public let barcode: String?
        public let status: Int?
        public var couponset_data: CouponSetItemModel?
        
        public init(dictionary: [String: Any]) {
            self.couponset_uuid = dictionary["couponset_uuid"] as? String? ?? ""
            self.name = dictionary["name"] as? String? ?? ""
            self.image = dictionary["image"] as? String? ?? ""
            self.description = dictionary["description"] as? String? ?? ""
            self.discount = dictionary["discount"] as? String? ?? ""
            self.coupon = dictionary["coupon"] as? String? ?? ""
            self.category = dictionary["category"] as? String? ?? ""
            self.barcode = dictionary["barcode"] as? String? ?? ""
            self.status = dictionary["status"] as? Int? ?? nil
            
            if let couponSetData = dictionary["couponset_data"] as? [String: Any]? ?? ["":""] {
                
                let tempCouponset = CouponSetItemModel(dictionary: couponSetData)
                
                self.couponset_data = tempCouponset
            } else {
                self.couponset_data = nil
            }
            
            
            let expirationString = dictionary["expiration"] as? String? ?? ""
            
    //      Example expirationString: Optional(2022-12-05 01:55)
            
            let dateFormatter = DateFormatter()
            dateFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss"
            if let date = dateFormatter.date(from: expirationString ?? "") {
                dateFormatter.dateFormat = "dd/MM/yyyy"
                let resultString = dateFormatter.string(from: date)
                self.expiration = resultString
            } else {
                self.expiration = ""
            }
            
            
        }
        
        
        public func setCouponSetData(_ couponSet: CouponSetItemModel) {
            self.couponset_data = couponSet
        }
        
//        var asDictionary : [String:Any] {
//          let mirror = Mirror(reflecting: self)
//          let dict = Dictionary(uniqueKeysWithValues: mirror.children.lazy.map({ (label:String?, value:Any) -> (String, Any)? in
//            guard let label = label else { return nil }
//            return (label, value)
//          }).compactMap { $0 })
//          return dict
//        }
    }

    public class CouponsDataModel {
        var data: Array<CouponItemModel> = []

        init() { //initializer method
            
        }
        
        var getData: Array<CouponItemModel> {
            get { // getter
                return data.filter({
                    return $0.status == 1
                })
            }
        }
        
        
        var getOldCoupons: Array<CouponItemModel> {
            get { // getter
                return data.filter({
                    return $0.status != 1
                })
            }
        }
        
        
        func getCouponsData(_ getCouponsCallback: @escaping (_ couponsData: Array<CouponItemModel>?) -> Void) -> Void {
            
            var coupons: [AnyHashable : Any]?
            var couponSets: [AnyHashable : Any]?
            let instanceOfMyApi = MyApi()
            
            instanceOfMyApi.getCouponsWithSuccessBlock(couponsCallback, failureBlock: (couponsFailureCallback))
            
            func couponsCallback(_ couponsData: [AnyHashable : Any]?) -> Void {
                coupons = couponsData ?? ["":""]
                
                // On Coupons request success, make CouponSets request
                instanceOfMyApi.getCouponsetsAsync(true, andVisible: true, andUuids: nil, couponSetsCallback, failureBlock: couponSetsFailureCallback)
            }
            
            func couponsFailureCallback(_ error: Error?) -> Void {
                print("getCoupons error: ")
                getCouponsCallback(nil)
            }
            
            func couponSetsCallback(_ couponSetsData: [AnyHashable : Any]?) -> Void {
                couponSets = couponSetsData ?? ["":""]
                
                // On CouponSets request Success, match coupons with couponsets
                let tempCoupons = matchCoupons()
                getCouponsCallback(tempCoupons)
            }
            
            func couponSetsFailureCallback(_ error: Error?) -> Void {
                print("getCouponSets error: ")
                getCouponsCallback(nil)
            }
            
            func matchCoupons() -> Array<CouponItemModel> {
                var couponsArray:Array<CouponItemModel> = []
                
                if let myCouponsSetsDictionary = couponSets as? [String : AnyObject] {
                    let couponSetsData = (myCouponsSetsDictionary["MAPP_COUPON"] as! Array<NSMutableDictionary>)
                    if let myCouponsDictionary = coupons as? [String : AnyObject] {
                        let couponsData = (myCouponsDictionary["result"] as! Array<NSMutableDictionary>)
                        if let sets = couponSetsData as? NSArray {
                            for set in sets {
                                let s = set as! NSDictionary
                                if let cpns = couponsData as? NSArray {
                                    for coupon in cpns {
                                        var c = coupon as! NSDictionary
        //                                var temp = NSMutableDictionary(dictionary: s);
                                        if c["couponset_uuid"] as! String == s["uuid"] as! String {
                                            let temp = NSMutableDictionary(dictionary: c);
        
                                            temp.setValue(s as! [AnyHashable : Any],forKey: "couponset_data")
        
                                            let tempCoupon = CouponItemModel(dictionary: temp as! [String : Any])
                                            couponsArray.append(tempCoupon)
                                        }
        
                                    }
                                }
        
                            }
                        }
                    }
                }
                
    //            if let myCouponsDictionary = coupons as? [String : AnyObject] {
    //                let couponsData = (myCouponsDictionary["result"] as! NSArray)
    //
    //
    //                for coupon in couponsData {
    //                    let tempCoupon = CouponItemModel(dictionary: coupon as! [String : Any])
    //                    couponsArray.append(tempCoupon)
    //                }
    //
    //            }
                
                return couponsArray
                
            }
            
        }
        
    }
    
    
    public func filterActiveCoupons(_ coupons: Array<CouponItemModel>) -> Array<CouponItemModel> {
        return coupons.filter({
            return $0.status == 1
        })
    }
    
    public func filterOldCoupons(_ coupons: Array<CouponItemModel>) -> Array<CouponItemModel> {
        return coupons.filter({
            return $0.status != 1
        })
    }
    
    public func getCouponsAsync(_ getCouponsCallback: @escaping (_ couponsData: Array<CouponItemModel>?) -> Void) -> Void {
        CouponsDataModel().getCouponsData(getCouponsCallback)
    }
    
    public class func getCoupons() -> Array<CouponItemModel> {
        return CouponsDataModel().getData
    }
    
    public func getOldCoupons() -> Array<CouponItemModel> {
        return CouponsDataModel().getOldCoupons
    }
    
    public class CampaignItemModel {
        public let index_url: String?
        public let logo_url: String?
        public let offer_category: String?
        public let title: String?
        public let subtitle: String?
        public let session_uuid: String?
        public let subcategory: String?
        public let is_new: Bool?
        public let message: String?
        
        init(dictionary: [String: Any]) {
            self.index_url = dictionary["index_url"] as? String? ?? ""
            self.logo_url = dictionary["logo_url"] as? String? ?? ""
            self.offer_category = dictionary["offer_category"] as? String? ?? ""
            self.title = dictionary["title"] as? String? ?? ""
            self.subtitle = dictionary["subtitle"] as? String? ?? ""
            self.session_uuid = dictionary["session_uuid"] as? String? ?? ""
            self.is_new = dictionary["is_new"] as? Bool? ?? false
            self.message = dictionary["message"] as? String? ?? ""
            
    //        let extra_fields = dictionary["extra_fields"] as? [String: Any]? ?? ["":""]
            let extra_fields = dictionary["extra_fields"] as AnyObject
            var extra_fields_parsed:[String: Any]
            
            let json = extra_fields.data(using: String.Encoding.utf8.rawValue)
            do {
                if let jsonArray = try JSONSerialization.jsonObject(with: json!, options: .allowFragments) as? [String:AnyObject]
                {
                    extra_fields_parsed = jsonArray;
                    self.subcategory = extra_fields_parsed["subcategory"] as? String? ?? ""
                } else {
                    self.subcategory = ""
                    print("bad json")
                }
            } catch let error as NSError {
                self.subcategory = ""
                print(error)
            }
            
        }
    }

    public class CampaignDataModel {
        var data: Array<CampaignItemModel> = []

        init() {
        }

        var getData: Array<CampaignItemModel> {
            get { // getter
                return data
            }
        }
        
        func getCampaignsData(_ getCampaignsCallback: @escaping (_ campaignsData: Array<CampaignItemModel>?) -> Void) -> Void {
            
            let instanceOfMyApi = MyApi()
            instanceOfMyApi.getInboxAsync(campaignsCallback, failureBlock: campaignsFailureCallback)
            
            
            func campaignsCallback(_ campaignsData: [Any]?) -> Void {
                var campaignsArray:Array<CampaignItemModel> = []
                
                for item in campaignsData ?? [] {
                    let tempCampaign = CampaignItemModel(dictionary: item as! [String : Any])
                    campaignsArray.append(tempCampaign)
                }
                
                getCampaignsCallback(campaignsArray);
            }
            
            func campaignsFailureCallback(_ error: Error?) -> Void {
                print("getCampaigns error: ")
                getCampaignsCallback(nil)
            }
            
        }
    }

    public func getCampaignsAsync(_ getCampaignsCallback: @escaping (_ campaignsData: Array<CampaignItemModel>?) -> Void) -> Void {
        CampaignDataModel().getCampaignsData(getCampaignsCallback)
    }
    
    public func getCampaigns() -> Array<CampaignItemModel> {
        return CampaignDataModel().getData
    }


    public class LoyaltyContextualOfferModel {
        private var sessionId: String
        private var eligibleAssets: Array<String>
        private var id: String
        private var businessAdditionalId: String
        private var treatmentCode: String
        private var offerName: String
        private var productType: String
        private var provDuration: String
        private var noOfRecurrance: String
        private var price: String
        private var discount: String
        private var voiceCategory: String
        private var dataCategory: String
        private var minsValue: String
        private var dataValue: String
        private var provStepValueMins: String
        private var postpayProduct: String
        private var notificationMessage: String
        private var loyaltyCampaignId: String

        public init(sessionId: String?, eligibleAssets: Array<String>?, id: String?, businessAdditionalId: String?, treatmentCode: String?, offerName: String?, productType: String?, provDuration: String?, noOfRecurrance: String?, price: String?, discount: String?, voiceCategory: String?, dataCategory: String?, minsValue: String?, dataValue: String?, provStepValueMins: String?, postpayProduct: String?, notificationMessage: String?, loyaltyCampaignId: String?) {
            self.sessionId = sessionId ?? ""
            self.eligibleAssets = eligibleAssets ?? []
            self.id = id ?? ""
            self.businessAdditionalId = businessAdditionalId ?? ""
            self.treatmentCode = treatmentCode ?? ""
            self.offerName = offerName ?? ""
            self.productType = productType ?? ""
            self.provDuration = provDuration ?? ""
            self.noOfRecurrance = noOfRecurrance ?? ""
            self.price = price ?? ""
            self.discount = discount ?? ""
            self.voiceCategory = voiceCategory ?? ""
            self.dataCategory = dataCategory ?? ""
            self.minsValue = minsValue ?? ""
            self.dataValue = dataValue ?? ""
            self.provStepValueMins = provStepValueMins ?? ""
            self.postpayProduct = postpayProduct ?? ""
            self.notificationMessage = notificationMessage ?? ""
            self.loyaltyCampaignId = loyaltyCampaignId ?? ""
        }
        
        public init() {
            self.sessionId = ""
            self.eligibleAssets = []
            self.id = ""
            self.businessAdditionalId = ""
            self.treatmentCode = ""
            self.offerName = ""
            self.productType = ""
            self.provDuration = ""
            self.noOfRecurrance = ""
            self.price = ""
            self.discount = ""
            self.voiceCategory = ""
            self.dataCategory = ""
            self.minsValue = ""
            self.dataValue = ""
            self.provStepValueMins = ""
            self.postpayProduct = ""
            self.notificationMessage = ""
            self.loyaltyCampaignId = ""
        }
        
        public var _sessionId: String {
            get { // getter
                return self.sessionId
            }
            set(newValue) { //setter
                self.sessionId = newValue
            }
        }
        
        public var _eligibleAssets: Array<String> {
            get { // getter
                return self.eligibleAssets
            }
            set(newValue) { //setter
                self.eligibleAssets = newValue
            }
        }
        
        public var _id: String {
            get { // getter
                return self.id
            }
            set(newValue) { //setter
                self.id = newValue
            }
        }
        
        public var _businessAdditionalId: String {
            get { // getter
                return self.businessAdditionalId
            }
            set(newValue) { //setter
                self.businessAdditionalId = newValue
            }
        }
        
        public var _treatmentCode: String {
            get { // getter
                return self.treatmentCode
            }
            set(newValue) { //setter
                self.treatmentCode = newValue
            }
        }

        public var _offerName: String {
            get { // getter
                return self.offerName
            }
            set(newValue) { //setter
                self.offerName = newValue
            }
        }
        
        public var _productType: String {
            get { // getter
                return self.productType
            }
            set(newValue) { //setter
                self.productType = newValue
            }
        }
        
        public var _provDuration: String {
            get { // getter
                return self.provDuration
            }
            set(newValue) { //setter
                self.provDuration = newValue
            }
        }
        
        public var _noOfRecurrance: String {
            get { // getter
                return self.noOfRecurrance
            }
            set(newValue) { //setter
                self.noOfRecurrance = newValue
            }
        }
        
        public var _price: String {
            get { // getter
                return self.price
            }
            set(newValue) { //setter
                self.price = newValue
            }
        }
        
        public var _discount: String {
            get { // getter
                return self.discount
            }
            set(newValue) { //setter
                self.discount = newValue
            }
        }
        
        public var _voiceCategory: String {
            get { // getter
                return self.voiceCategory
            }
            set(newValue) { //setter
                self.voiceCategory = newValue
            }
        }
        
        public var _dataCategory: String {
            get { // getter
                return self.dataCategory
            }
            set(newValue) { //setter
                self.dataCategory = newValue
            }
        }
        
        public var _minsValue: String {
            get { // getter
                return self.minsValue
            }
            set(newValue) { //setter
                self.minsValue = newValue
            }
        }
        
        public var _dataValue: String {
            get { // getter
                return self.dataValue
            }
            set(newValue) { //setter
                self.dataValue = newValue
            }
        }
        
        public var _provStepValueMins: String {
            get { // getter
                return self.provStepValueMins
            }
            set(newValue) { //setter
                self.provStepValueMins = newValue
            }
        }
        
        public var _postpayProduct: String {
            get { // getter
                return self.postpayProduct
            }
            set(newValue) { //setter
                self.postpayProduct = newValue
            }
        }
        
        public var _notificationMessage: String {
            get { // getter
                return self.notificationMessage
            }
            set(newValue) { //setter
                self.notificationMessage = newValue
            }
        }
        
        public var _loyaltyCampaignId: String {
            get { // getter
                return self.loyaltyCampaignId
            }
            set(newValue) { //setter
                self.loyaltyCampaignId = newValue
            }
        }
        
    }
    
//    public func openCoupon(parent: UIView, coupon: CouponSetItemModel) -> UIViewController {
//        return UIHostingController(rootView: CouponView(parentView: parent, coupon: coupon))
//    }
//
//    public func openCouponBarcode(parent: UIView, coupon: CouponItemModel) -> UIViewController {
//        return UIHostingController(rootView: CouponBarcodeView(parentView: parent, coupon: coupon))
//    }
//
//    public func openSteps(parent: UIView) -> UIViewController {
//        return UIHostingController(rootView: StepsView(parentView: parent))
//    }


    public class ProfileModel {
        public let ack_optin: Bool?
        public let billing_info: [String: Any]?
        public let birthday: String?
        public let burnt_points: Double?
        public let company_name: String?
        public let consumer_metadata: [String: Any]?
        public let display_name: String?
        public let email: String?
        public let firstname: String?
        public let gender: String?
        public let image_url: String?
        public let language: String?
        public let lastname: String?
        public let loyalty_id: String?
        public let msisdn: String?
        public let nameday: String?
        public let nickname: String?
        public let password_set: Bool?
        public let profile_metadata: [String: Any]?
        public let redeemed_points: Double?
        public let retrieved_points: Double?
        public let salutation: String?
        public let subscribe: Bool?
        public let tags: [String: Any]?
        public let tax_id: String?
        public let user_points: Double?
        public let uuid: String?
        public let verified: Bool?
        
        // optin
        public let optin_newsletter: Bool?
        public let optin_sms: Bool?
        public let optin_segmentation: Bool?
        public let optin_sms_segmentation: Bool?
        
        
        init(dictionary: [String: Any]) {
            self.ack_optin = dictionary["ack_optin"] as? Bool? ?? false
            self.billing_info = dictionary["billing_info"] as? [String: Any]? ?? ["":""]
            self.birthday = dictionary["birthday"] as? String? ?? ""
            self.burnt_points = dictionary["burnt_points"] as? Double? ?? 0.0
            self.company_name = dictionary["company_name"] as? String? ?? ""
            self.consumer_metadata = dictionary["consumer_metadata"] as? [String: Any]? ?? ["":""]
            self.display_name = dictionary["display_name"] as? String? ?? ""
            self.email = dictionary["email"] as? String? ?? ""
            self.firstname = dictionary["firstname"] as? String? ?? ""
            self.gender = dictionary["gender"] as? String? ?? ""
            self.image_url = dictionary["image_url"] as? String? ?? ""
            self.language = dictionary["language"] as? String? ?? ""
            self.lastname = dictionary["lastname"] as? String? ?? ""
            self.loyalty_id = dictionary["loyalty_id"] as? String? ?? ""
            self.msisdn = dictionary["msisdn"] as? String? ?? ""
            self.nameday = dictionary["nameday"] as? String? ?? ""
            self.nickname = dictionary["nickname"] as? String? ?? ""
            self.password_set = dictionary["password_set"] as? Bool? ?? false
            self.profile_metadata = dictionary["profile_metadata"] as? [String: Any]? ?? ["":""]
            self.redeemed_points = dictionary["redeemed_points"] as? Double? ?? 0.0
            self.retrieved_points = dictionary["retrieved_points"] as? Double? ?? 0.0
            self.salutation = dictionary["salutation"] as? String? ?? ""
            self.subscribe = dictionary["subscribe"] as? Bool? ?? false
            self.tags = dictionary["tags"] as? [String: Any]? ?? ["":""]
            self.tax_id = dictionary["tax_id"] as? String? ?? ""
            self.user_points = dictionary["user_points"] as? Double? ?? 0.0
            self.uuid = dictionary["uuid"] as? String? ?? ""
            self.verified = dictionary["verified"] as? Bool? ?? false
            
            // optin
            let optin = dictionary["optin"] as? [String: Any]? ?? ["":""]
            self.optin_newsletter = optin?["newsletter"] as? Bool? ?? false
            self.optin_sms = optin?["sms"] as? Bool? ?? false
            self.optin_segmentation = optin?["segmentation"] as? Bool? ?? false
            self.optin_sms_segmentation = optin?["sms_segmentation"] as? Bool? ?? false
            
        }
    }
    
    public class ProfileDataModel {

        init() {
        }

        func getProfileData(_ getProfileCallback: @escaping (_ profileData: ProfileModel?) -> Void) -> Void {
            
            let instanceOfMyApi = MyApi()
            instanceOfMyApi.getProfileAsync(profileCallback, failureBlock: profileFailureCallback)
            
            func profileCallback(_ profileData: [AnyHashable: Any]?) -> Void {
                
                if let profileDataDictionary = profileData as? [String : AnyObject] {
                    let profileDataResult = (profileDataDictionary["result"] as? [String: Any] ?? ["":""])
                    
                    let tempProfile = ProfileModel(dictionary: profileDataResult)
                    
                    getProfileCallback(tempProfile);
                    
                } else {
                    getProfileCallback(nil)
                }
                
            }
            
            func profileFailureCallback(_ error: Error?) -> Void {
                print("getProfile error: ")
                getProfileCallback(nil)
            }
            
        }
    }
    
    
    public func getProfileAsync(_ getProfileCallback: @escaping (_ profileData: ProfileModel?) -> Void) -> Void {
        ProfileDataModel().getProfileData(getProfileCallback)
    }

    
    public class VerifyTicketResponseModel {
        public let result: String?
        public let status: Int?
        
        
        init(dictionary: [String: Any]) {
            self.result = dictionary["result"] as? String? ?? ""
            self.status = dictionary["status"] as? Int? ?? -1
            
        }
        
        public var getResult: String {
            get { // getter
                return self.result ?? ""
            }
        }

        public var getStatus: Int {
            get { // getter
                return self.status ?? -1
            }
        }
    }
    
    public class VerifyTicketModel {

        init() {
        }

        func verifyTicket(guid: String, ticket: String, _ verifyTicketCallback: @escaping (_ verifyTicketData: VerifyTicketResponseModel?) -> Void) -> Void {
            
            let instanceOfMyApi = MyApi()
            instanceOfMyApi.verifyTicketAsync(guid, ticket, verifyAsyncCallback, failureBlock: verifyAsyncFailureCallback)
            
            func verifyAsyncCallback(_ verifyTicketData: [AnyHashable: Any]?) -> Void {
                
                if let verifyTicketDataDictionary = verifyTicketData as? [String: Any] {
                    
                    let tempResponse = VerifyTicketResponseModel(dictionary: verifyTicketDataDictionary)

                    verifyTicketCallback(tempResponse);

                } else {
                    verifyTicketCallback(nil)
                }
                
            }
            
            func verifyAsyncFailureCallback(_ error: Error?) -> Void {
                print("verifyTicket error: ")
                print(error)
                print("====================")
                verifyTicketCallback(nil)
            }
            
        }
    }
    
    
    public func verifyTicketAsync(guid: String, ticket: String, _ verifyTicketCallback: @escaping (_ verifyTicketData: VerifyTicketResponseModel?) -> Void) -> Void {
        VerifyTicketModel().verifyTicket(guid: guid, ticket: ticket, verifyTicketCallback)
    }


    public class WarplyPacingModel {
        private var tree_co2_year: Double
        private var tree_co2_month: Double
        private var tree_co2_week: Double
        private var tree_co2_day: Double
        
        private var car_distance_year: Double
        private var car_distance_month: Double
        private var car_distance_week: Double
        private var car_distance_day: Double
        
        private var car_consumption_year: Double
        private var car_consumption_month: Double
        private var car_consumption_week: Double
        private var car_consumption_day: Double
        
        private var car_co2_year: Double
        private var car_co2_month: Double
        private var car_co2_week: Double
        private var car_co2_day: Double
        
        private var walking_distance_year: Double
        private var walking_distance_month: Double
        private var walking_distance_week: Double
        private var walking_distance_day: Double
        
        private var liters_saved_year: Double
        private var liters_saved_month: Double
        private var liters_saved_week: Double
        private var liters_saved_day: Double
        
        private var co2_saved_year: Double
        private var co2_saved_month: Double
        private var co2_saved_week: Double
        private var co2_saved_day: Double
        
        
        public init() {
            self.tree_co2_year = 0.0
            self.tree_co2_month = 0.0
            self.tree_co2_week = 0.0
            self.tree_co2_day = 0.0
            
            self.car_distance_year = 0.0
            self.car_distance_month = 0.0
            self.car_distance_week = 0.0
            self.car_distance_day = 0.0
            
            self.car_consumption_year = 0.0
            self.car_consumption_month = 0.0
            self.car_consumption_week = 0.0
            self.car_consumption_day = 0.0
            
            self.car_co2_year = 0.0
            self.car_co2_month = 0.0
            self.car_co2_week = 0.0
            self.car_co2_day = 0.0
            
            self.walking_distance_year = 0.0
            self.walking_distance_month = 0.0
            self.walking_distance_week = 0.0
            self.walking_distance_day = 0.0
            
            self.liters_saved_year = 0.0
            self.liters_saved_month = 0.0
            self.liters_saved_week = 0.0
            self.liters_saved_day = 0.0
            
            self.co2_saved_year = 0.0
            self.co2_saved_month = 0.0
            self.co2_saved_week = 0.0
            self.co2_saved_day = 0.0
            
        }
        
        public var _tree_co2_year: Double {
            get { // getter
                return self.tree_co2_year
            }
            set(newValue) { //setter
                self.tree_co2_year = newValue
            }
        }
        
        public var _tree_co2_month: Double {
            get { // getter
                return self.tree_co2_month
            }
            set(newValue) { //setter
                self.tree_co2_month = newValue
            }
        }
        
        public var _tree_co2_week: Double {
            get { // getter
                return self.tree_co2_week
            }
            set(newValue) { //setter
                self.tree_co2_week = newValue
            }
        }
        
        public var _tree_co2_day: Double {
            get { // getter
                return self.tree_co2_day
            }
            set(newValue) { //setter
                self.tree_co2_day = newValue
            }
        }
        
        public var _car_distance_year: Double {
            get { // getter
                return self.car_distance_year
            }
            set(newValue) { //setter
                self.car_distance_year = newValue
            }
        }
        
        public var _car_distance_month: Double {
            get { // getter
                return self.car_distance_month
            }
            set(newValue) { //setter
                self.car_distance_month = newValue
            }
        }
        
        public var _car_distance_week: Double {
            get { // getter
                return self.car_distance_week
            }
            set(newValue) { //setter
                self.car_distance_week = newValue
            }
        }
        
        public var _car_distance_day: Double {
            get { // getter
                return self.car_distance_day
            }
            set(newValue) { //setter
                self.car_distance_day = newValue
            }
        }
        
        public var _car_consumption_year: Double {
            get { // getter
                return self.car_consumption_year
            }
            set(newValue) { //setter
                self.car_consumption_year = newValue
            }
        }
        
        public var _car_consumption_month: Double {
            get { // getter
                return self.car_consumption_month
            }
            set(newValue) { //setter
                self.car_consumption_month = newValue
            }
        }
        
        public var _car_consumption_week: Double {
            get { // getter
                return self.car_consumption_week
            }
            set(newValue) { //setter
                self.car_consumption_week = newValue
            }
        }
        
        public var _car_consumption_day: Double {
            get { // getter
                return self.car_consumption_day
            }
            set(newValue) { //setter
                self.car_consumption_day = newValue
            }
        }
        
        public var _car_co2_year: Double {
            get { // getter
                return self.car_co2_year
            }
            set(newValue) { //setter
                self.car_co2_year = newValue
            }
        }
        
        public var _car_co2_month: Double {
            get { // getter
                return self.car_co2_month
            }
            set(newValue) { //setter
                self.car_co2_month = newValue
            }
        }
        
        public var _car_co2_week: Double {
            get { // getter
                return self.car_co2_week
            }
            set(newValue) { //setter
                self.car_co2_week = newValue
            }
        }
        
        public var _car_co2_day: Double {
            get { // getter
                return self.car_co2_day
            }
            set(newValue) { //setter
                self.car_co2_day = newValue
            }
        }
        
        public var _walking_distance_year: Double {
            get { // getter
                return self.walking_distance_year
            }
            set(newValue) { //setter
                self.walking_distance_year = newValue
            }
        }
        
        public var _walking_distance_month: Double {
            get { // getter
                return self.walking_distance_month
            }
            set(newValue) { //setter
                self.walking_distance_month = newValue
            }
        }
        
        public var _walking_distance_week: Double {
            get { // getter
                return self.walking_distance_week
            }
            set(newValue) { //setter
                self.walking_distance_week = newValue
            }
        }
        
        public var _walking_distance_day: Double {
            get { // getter
                return self.walking_distance_day
            }
            set(newValue) { //setter
                self.walking_distance_day = newValue
            }
        }
        
        public var _liters_saved_year: Double {
            get { // getter
                return self.liters_saved_year
            }
            set(newValue) { //setter
                self.liters_saved_year = newValue
            }
        }
        
        public var _liters_saved_month: Double {
            get { // getter
                return self.liters_saved_month
            }
            set(newValue) { //setter
                self.liters_saved_month = newValue
            }
        }
        
        public var _liters_saved_week: Double {
            get { // getter
                return self.liters_saved_week
            }
            set(newValue) { //setter
                self.liters_saved_week = newValue
            }
        }
        
        public var _liters_saved_day: Double {
            get { // getter
                return self.liters_saved_day
            }
            set(newValue) { //setter
                self.liters_saved_day = newValue
            }
        }
        
        public var _co2_saved_year: Double {
            get { // getter
                return self.co2_saved_year
            }
            set(newValue) { //setter
                self.co2_saved_year = newValue
            }
        }
        
        public var _co2_saved_month: Double {
            get { // getter
                return self.co2_saved_month
            }
            set(newValue) { //setter
                self.co2_saved_month = newValue
            }
        }
        
        public var _co2_saved_week: Double {
            get { // getter
                return self.co2_saved_week
            }
            set(newValue) { //setter
                self.co2_saved_week = newValue
            }
        }
        
        public var _co2_saved_day: Double {
            get { // getter
                return self.co2_saved_day
            }
            set(newValue) { //setter
                self.co2_saved_day = newValue
            }
        }
    }

    public class LoyaltySDKFirebaseEventModel {
        private var eventName: String
        private var parameters: [String: String]
        
        
        public init() {
            self.eventName = ""
            self.parameters = [String: String]()
            
        }
        
        public var _eventName: String {
            get { // getter
                return self.eventName
            }
            set(newValue) { //setter
                self.eventName = newValue
            }
        }
        
        public var _parameters: [String: String] {
            get { // getter
                return self.parameters
            }
            set(newValue) { //setter
                self.parameters = newValue
            }
        }
        
        public var setParameter: (key: String, value: String) {
            @available(*, unavailable)
            get {
//                    fatalError("You cannot read from this object.")
                return (key: "", value: "")
            }
            set(newValue) { //setter
                self.parameters.updateValue(newValue.1, forKey: newValue.0)
                
            }
        }
    }

    
    public func constructCampaignUrl(_ campaign: CampaignItemModel) -> String {
        let instanceOfMyApi = MyApi()
        let campaignInfo = instanceOfMyApi.provideInfoForCampaign()
        let finalUrl = (campaign.index_url ?? "")
            + "?web_id=" + (campaignInfo?["web_id"] as! String)
            + "&app_uuid=" + (campaignInfo?["app_uuid"] as! String)
            + "&api_key=" + (campaignInfo?["api_key"] as! String)
            + "&session_uuid=" + (campaign.session_uuid ?? "")
            + "&access_token=" + (campaignInfo?["access_token"] as! String)
            + "&refresh_token=" + (campaignInfo?["refresh_token"] as! String)
            + "&client_id=" + (campaignInfo?["client_id"] as! String)
            + "&client_secret=" + (campaignInfo?["client_secret"] as! String);
    
        return finalUrl
    }
    
    public func constructCcmsUrl(_ campaign: LoyaltyContextualOfferModel) -> String {
        return ""
    }

    public func constructCampaignUrlForShare(_ sessionUuid: String, _ sharingId: String) -> String {
        for item in GlobalVariables.campaigns {
            if (item.session_uuid == sessionUuid) {
                let instanceOfMyApi = MyApi()
                let campaignInfo = instanceOfMyApi.provideInfoForCampaign()
                let finalUrl = (item.index_url ?? "")
                    + "?web_id=" + (campaignInfo?["web_id"] as! String)
                    + "&app_uuid=" + (campaignInfo?["app_uuid"] as! String)
                    + "&api_key=" + (campaignInfo?["api_key"] as! String)
                    + "&session_uuid=" + (item.session_uuid ?? "")
                    + "&access_token=" + (campaignInfo?["access_token"] as! String)
                    + "&refresh_token=" + (campaignInfo?["refresh_token"] as! String)
                    + "&client_id=" + (campaignInfo?["client_id"] as! String)
                    + "&client_secret=" + (campaignInfo?["client_secret"] as! String)
                    + "&sharing_id=" + sharingId;
            
                return finalUrl
                break;
            }
        }
        return ""
    }

    
    public class LoyaltyGiftsForYouOfferClickEvent {
        private var title: String
        private var imageUrl: String
        private var loyaltyPackageId: String
        
        
        public init() {
            self.title = ""
            self.imageUrl = ""
            self.loyaltyPackageId = ""
            
        }
        
        public var _title: String {
            get { // getter
                return self.title
            }
            set(newValue) { //setter
                self.title = newValue
            }
        }
        
        public var _imageUrl: String {
            get { // getter
                return self.imageUrl
            }
            set(newValue) { //setter
                self.imageUrl = newValue
            }
        }
        
        public var _loyaltyPackageId: String {
            get { // getter
                return self.loyaltyPackageId
            }
            set(newValue) { //setter
                self.loyaltyPackageId = newValue
            }
        }
    }

    
    public class CustomerStateModel {
        private var nonTelco: Bool
        private var acceptedConsent: Bool
        private var guid: String
        private var msisdnList: Array<String>
        
        
        public init() {
            self.nonTelco = false
            self.acceptedConsent = false
            self.guid = ""
            self.msisdnList = []
        }
        
        public var _nonTelco: Bool {
            get { // getter
                return self.nonTelco
            }
            set(newValue) { //setter
                self.nonTelco = newValue
            }
        }
        
        public var _acceptedConsent: Bool {
            get { // getter
                return self.acceptedConsent
            }
            set(newValue) { //setter
                self.acceptedConsent = newValue
            }
        }

        public var _guid: String {
            get { // getter
                return self.guid
            }
            set(newValue) { //setter
                self.guid = newValue
            }
        }
        
        public var _msisdnList: Array<String> {
            get { // getter
                return self.msisdnList
            }
            set(newValue) { //setter
                self.msisdnList = newValue
            }
        }
    }
    
    
    public func loadCustomerState() -> CustomerStateModel? {
        return GlobalVariables.customerState
    }
    
    public func saveCustomerState(_ customer: CustomerStateModel) -> Void {
        GlobalVariables.customerState = customer
    }

    
    public class LoyaltySDKDeeplinkEventModel {
        private var deeplinkUrl: String
        private var parameters: [String: Any]
        
        
        public init() {
            self.deeplinkUrl = ""
            self.parameters = [String: Any]()
            
        }
        
        public var _deeplinkUrl: String {
            get { // getter
                return self.deeplinkUrl
            }
            set(newValue) { //setter
                self.deeplinkUrl = newValue
            }
        }
        
        public var _parameters: [String: Any] {
            get { // getter
                return self.parameters
            }
            set(newValue) { //setter
                self.parameters = newValue
            }
        }
    }

    
    public class WarplyPacingCardEventModel {
        private var isVisible: Bool
        
        public init() {
            self.isVisible = false
            
        }
        
        public var _isVisible: Bool {
            get { // getter
                return self.isVisible
            }
            set(newValue) { //setter
                self.isVisible = newValue
            }
        }
    }

    
    public class WarplyPacingCardServiceEnabledModel {
        private var isEnabled: Bool
        
        public init() {
            self.isEnabled = false
            
        }
        
        public var _isEnabled: Bool {
            get { // getter
                return self.isEnabled
            }
            set(newValue) { //setter
                self.isEnabled = newValue
            }
        }
    }

    
    public func openQuestionnaire(_ controller: UIViewController) -> Void {
        for item in GlobalVariables.campaigns {
            if (item.offer_category == "questionnaire") {
                let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self))
                let vc = storyboard.instantiateViewController(withIdentifier: "CampaignViewController") as! CampaignViewController
                let url = swiftApi().constructCampaignUrl(item)
                vc.campaignUrl = url
                controller.navigationController?.pushViewController(vc, animated: true)
                break;
            }
        }
    }
    
    public func setCampaignList(_ campaigns: Array<CampaignItemModel>) -> Void {
        GlobalVariables.campaigns = campaigns
    }

    
    public class WarplyDealsAnalysisEventModel {
        private var isPressed: Bool
        
        public init() {
            self.isPressed = false
        }
        
        public var _isPressed: Bool {
            get { // getter
                return self.isPressed
            }
            set(newValue) { //setter
                self.isPressed = newValue
            }
        }
    }

    
    public class WarplyCCMSEnabledModel {
        private var isActivated: Bool
        
        public init() {
            self.isActivated = false
            
        }
        
        public var _isActivated: Bool {
            get { // getter
                return self.isActivated
            }
            set(newValue) { //setter
                self.isActivated = newValue
            }
        }
    }


    public class GenericResponseModel {
        private var result: Int?
        private var status: Int?
        private var msg: String?
        
        
        init(dictionary: [String: Any]) {
            self.result = dictionary["result"] as? Int? ?? -1
            self.status = dictionary["status"] as? Int? ?? -1
            self.msg = dictionary["msg"] as? String? ?? ""
        }
        
        public var getResult: Int {
            get { // getter
                return self.result ?? -1
            }
        }

        public var getStatus: Int {
            get { // getter
                return self.status ?? -1
            }
        }
        
        public var getMsg: String {
            get { // getter
                return self.msg ?? ""
            }
        }
    }

    
    public func consumerIntegrationAsync(nonTelco: Bool, acceptedConsent: Bool, msisdnList: Array<String>, guid: String, _ consumerIntegrationCallback: @escaping (_ responseData: GenericResponseModel?) -> Void) -> Void {
        
        let instanceOfMyApi = MyApi()
        instanceOfMyApi.consumerIntegrationAsync(nonTelco as NSNumber, acceptedConsent as NSNumber, msisdnList, guid, requestCallback, failureBlock: requestFailureCallback)
            
            func requestCallback(_ responseData: [AnyHashable: Any]?) -> Void {
                
                if let responseDataDictionary = responseData as? [String: Any] {
                    
                    let tempResponse = GenericResponseModel(dictionary: responseDataDictionary)

                    consumerIntegrationCallback(tempResponse);

                } else {
                    consumerIntegrationCallback(nil)
                }
                
            }
            
            func requestFailureCallback(_ error: Error?) -> Void {
                print("consumerIntegration error: ")
                print(error)
                print("====================")
                consumerIntegrationCallback(nil)
            }
    }

    public func redeemCouponSetAsync(uuid: String, _ redeemCouponSetCallback: @escaping (_ responseData: GenericResponseModel?) -> Void) -> Void {
        
        let instanceOfMyApi = MyApi()
        instanceOfMyApi.redeemCouponSetAsync(uuid, requestCallback, failureBlock: requestFailureCallback)
            
        func requestCallback(_ responseData: [AnyHashable: Any]?) -> Void {

            if let responseDataDictionary = responseData as? [String: Any] {
                
                let tempResponse = GenericResponseModel(dictionary: responseDataDictionary)

                redeemCouponSetCallback(tempResponse);

            } else {
                redeemCouponSetCallback(nil)
            }
            
        }
        
        func requestFailureCallback(_ error: Error?) -> Void {
            print("consumerIntegration error: ")
            print(error)
            print("====================")
            redeemCouponSetCallback(nil)
        }
    }

    
    public func setUniqueCampaignList(_ campaigns: Array<CampaignItemModel>) -> Void {
        GlobalVariables.campaigns = campaigns
    }
    
    
    public func getCampaignList() -> Array<CampaignItemModel> {
        return GlobalVariables.campaigns
    }


    public class QuestionnaireEventModel {
        private var name: String
        private var parameter: String
        
        
        public init() {
            self.name = ""
            self.parameter = ""
            
        }
        
        public var _name: String {
            get { // getter
                return self.name
            }
            set(newValue) { //setter
                self.name = newValue
            }
        }
        
        public var _parameter: String {
            get { // getter
                return self.parameter
            }
            set(newValue) { //setter
                self.parameter = newValue
            }
        }
    }

    
    public class ActiveDFYCouponModel {
        private var value: String
        private var date: String
        private var code: String
        
        
        public init() {
            self.value = ""
            self.date = ""
            self.code = ""
            
        }
        
        public var _value: String {
            get { // getter
                return self.value
            }
            set(newValue) { //setter
                self.value = newValue
            }
        }
        
        public var _date: String {
            get { // getter
                return self.date
            }
            set(newValue) { //setter
                self.date = newValue
            }
        }
        
        public var _code: String {
            get { // getter
                return self.code
            }
            set(newValue) { //setter
                self.code = newValue
            }
        }
    }

    
    public class LoyaltyBadgeModel {
        private var value: Float
        private var couponCount: Int
        
        
        public init() {
            self.value = 0.0
            self.couponCount = 0
            
        }
        
        public var _value: Float {
            get { // getter
                return self.value
            }
            set(newValue) { //setter
                self.value = newValue
            }
        }
        
        public var _couponCount: Int {
            get { // getter
                return self.couponCount
            }
            set(newValue) { //setter
                self.couponCount = newValue
            }
        }
    }

    
    public func setCouponList(_ coupons: Array<CouponItemModel>) {
        let filteredCoupons = coupons.filter { CharacterSet.decimalDigits.isSuperset(of: CharacterSet(charactersIn: $0.discount ?? "")) }
        GlobalVariables.couponList = filteredCoupons
        
        let loyaltyBadge = LoyaltyBadgeModel()
        
        let totalCouponDiscount = filteredCoupons.reduce(0) { $0 + (Float($1.discount ?? "") ?? 0) }
        
        loyaltyBadge._value = totalCouponDiscount
        loyaltyBadge._couponCount = filteredCoupons.count
        
        GlobalVariables.loyaltyBadge = loyaltyBadge
    }
    
    
    public func getCouponList() -> Array<CouponItemModel> {
        return GlobalVariables.couponList
    }
    
    
    public func getLoyaltyBadge() -> LoyaltyBadgeModel {
        return GlobalVariables.loyaltyBadge
    }

}