Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2022-09-06 17:46:10 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e18b3c078a8db0c8d6f4202252a02eff6b18cc6e
e18b3c07
1 parent
56094aaf
add redeemCouponSetAsync with extra_data
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
136 additions
and
3 deletions
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/GiftsViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/MFYViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/MyApi.h
SwiftWarplyFramework/SwiftWarplyFramework/MyApi.m
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.h
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
e18b3c0
No preview for this file type
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
View file @
e18b3c0
...
...
@@ -22,6 +22,7 @@ import UIKit
@IBOutlet
weak
var
termsTextView
:
UITextView
!
@IBOutlet
weak
var
termsTextViewHeight
:
NSLayoutConstraint
!
public
var
ccms
:
swiftApi
.
LoyaltyContextualOfferModel
?
public
var
profile
:
swiftApi
.
ProfileModel
?
=
swiftApi
()
.
getConsumer
()
let
uiscreen
:
CGRect
=
UIScreen
.
main
.
bounds
...
...
@@ -122,7 +123,12 @@ import UIKit
}
func
redeemCouponSetRequest
(
uuid
:
String
,
communication_uuid
:
String
)
{
if
(
ccms
==
nil
)
{
swiftApi
()
.
redeemCouponSetAsync
(
uuid
:
uuid
,
communication_uuid
:
communication_uuid
,
redeemCouponSetCallback
)
}
else
{
// TODO: MAybe change user_msisdn: profile?._msisdn ?? ""
swiftApi
()
.
redeemCouponSetAsync
(
uuid
:
uuid
,
communication_uuid
:
communication_uuid
,
user_msisdn
:
profile
?
.
_msisdn
??
""
,
businessService
:
(
ccms
?
.
_businessService
??
""
),
offerName
:
(
ccms
?
.
_offerName
??
""
),
productType
:
(
ccms
?
.
_productType
??
""
),
provDuration
:
(
ccms
?
.
_provDuration
??
""
),
noOfRecurrance
:
(
ccms
?
.
_noOfRecurrance
??
""
),
price
:
(
ccms
?
.
_price
??
""
),
discount
:
(
ccms
?
.
_discount
??
""
),
voiceCategory
:
(
ccms
?
.
_voiceCategory
??
""
),
dataCategory
:
(
ccms
?
.
_dataCategory
??
""
),
minsValue
:
(
ccms
?
.
_minsValue
??
""
),
dataValue
:
(
ccms
?
.
_dataValue
??
""
),
provStepValueMins
:
(
ccms
?
.
_provStepValueMins
??
""
),
OfferAudienceLevel
:
(
ccms
?
.
_offerAudienceLevel
??
""
),
UACIOfferTrackingCode
:
(
ccms
?
.
_uaciOfferTrackingCode
??
""
),
OFFERCODE1
:
(
ccms
?
.
_offerCode1
??
""
),
SCORE
:
(
ccms
?
.
_score
??
""
),
ZONE
:
(
ccms
?
.
_zone
??
""
),
WAVE
:
(
ccms
?
.
_wave
??
""
),
VALIDITY
:
(
ccms
?
.
_validity
??
""
),
TREATMENT_CODE
:
(
ccms
?
.
_treatmentCode
??
""
),
ccms_session_id
:
(
ccms
?
.
_sessionId
??
""
),
redeemCouponSetCallback
)
}
}
func
redeemCouponSetCallback
(
_
response
:
swiftApi
.
GenericResponseModel
?)
->
Void
{
...
...
SwiftWarplyFramework/SwiftWarplyFramework/GiftsViewController.swift
View file @
e18b3c0
...
...
@@ -185,8 +185,6 @@ extension GiftsViewController: UITableViewDelegate, UITableViewDataSource{
}
else
if
(
campaigns
[
indexPath
.
row
]
.
_campaign_type
==
"coupon"
)
{
let
couponsetUuid
=
campaigns
[
indexPath
.
row
]
.
_couponset
// TODO: search if loyalty id exists
if
(
couponsetUuid
!=
""
)
{
let
couponsetsList
=
swiftApi
()
.
getCouponSetList
()
...
...
@@ -196,7 +194,19 @@ extension GiftsViewController: UITableViewDelegate, UITableViewDataSource{
let
vc
=
storyboard
.
instantiateViewController
(
withIdentifier
:
"CouponViewController"
)
as!
SwiftWarplyFramework
.
CouponViewController
vc
.
couponset
=
item
vc
.
campaign
=
campaigns
[
indexPath
.
row
]
// TODO: add ccms
let
ccmsCampaigns
=
swiftApi
()
.
getCCMSLoyaltyCampaigns
()
let
loyaltyCampaignIdExists
=
ccmsCampaigns
.
contains
{
$0
.
_loyaltyCampaignId
==
campaigns
[
indexPath
.
row
]
.
session_uuid
}
if
(
loyaltyCampaignIdExists
==
true
)
{
for
item
in
ccmsCampaigns
{
if
(
item
.
_loyaltyCampaignId
==
campaigns
[
indexPath
.
row
]
.
session_uuid
)
{
vc
.
ccms
=
item
break
;
}
}
}
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
break
;
...
...
SwiftWarplyFramework/SwiftWarplyFramework/MFYViewController.swift
View file @
e18b3c0
...
...
@@ -143,6 +143,19 @@ extension MFYViewController: UITableViewDelegate, UITableViewDataSource{
let
vc
=
storyboard
.
instantiateViewController
(
withIdentifier
:
"CouponViewController"
)
as!
SwiftWarplyFramework
.
CouponViewController
vc
.
couponset
=
item
vc
.
campaign
=
campaigns
[
indexPath
.
row
]
let
ccmsCampaigns
=
swiftApi
()
.
getCCMSLoyaltyCampaigns
()
let
loyaltyCampaignIdExists
=
ccmsCampaigns
.
contains
{
$0
.
_loyaltyCampaignId
==
campaigns
[
indexPath
.
row
]
.
session_uuid
}
if
(
loyaltyCampaignIdExists
==
true
)
{
for
item
in
ccmsCampaigns
{
if
(
item
.
_loyaltyCampaignId
==
campaigns
[
indexPath
.
row
]
.
session_uuid
)
{
vc
.
ccms
=
item
break
;
}
}
}
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
break
;
...
...
SwiftWarplyFramework/SwiftWarplyFramework/MyApi.h
View file @
e18b3c0
...
...
@@ -86,6 +86,7 @@
-
(
void
)
getProfileAsync
:(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
consumerIntegrationAsync
:(
NSNumber
*
)
nonTelco
:
(
NSNumber
*
)
acceptedConsent
:
(
NSArray
*
)
msisdnList
:
(
NSString
*
)
guid
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
redeemCouponSetAsync
:(
NSString
*
)
uuid
:
(
NSString
*
)
communication_uuid
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
redeemCouponSetAsync
:(
NSString
*
)
uuid
:
(
NSString
*
)
communication_uuid
:
(
NSString
*
)
user_msisdn
:
(
NSString
*
)
businessService
:
(
NSString
*
)
offerName
:
(
NSString
*
)
productType
:
(
NSString
*
)
provDuration
:
(
NSString
*
)
noOfRecurrance
:
(
NSString
*
)
price
:
(
NSString
*
)
discount
:
(
NSString
*
)
voiceCategory
:
(
NSString
*
)
dataCategory
:
(
NSString
*
)
minsValue
:
(
NSString
*
)
dataValue
:
(
NSString
*
)
provStepValueMins
:
(
NSString
*
)
OfferAudienceLevel
:
(
NSString
*
)
UACIOfferTrackingCode
:
(
NSString
*
)
OFFERCODE1
:
(
NSString
*
)
SCORE
:
(
NSString
*
)
ZONE
:
(
NSString
*
)
WAVE
:
(
NSString
*
)
VALIDITY
:
(
NSString
*
)
TREATMENT_CODE
:
(
NSString
*
)
ccms_session_id
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
getPacingDetailsAsync
:(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
setPacingDetailsAsync
:(
NSNumber
*
)
steps
:
(
NSString
*
)
date
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
cosmoteSharingAsync
:(
NSString
*
)
sharingId
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
...
...
SwiftWarplyFramework/SwiftWarplyFramework/MyApi.m
View file @
e18b3c0
...
...
@@ -1441,6 +1441,19 @@ NSString *VERIFY_URL = @"/partners/cosmote/verify";
}];
}
-
(
void
)
redeemCouponSetAsync
:
(
NSString
*
)
uuid
:
(
NSString
*
)
communication_uuid
:
(
NSString
*
)
user_msisdn
:
(
NSString
*
)
businessService
:
(
NSString
*
)
offerName
:
(
NSString
*
)
productType
:
(
NSString
*
)
provDuration
:
(
NSString
*
)
noOfRecurrance
:
(
NSString
*
)
price
:
(
NSString
*
)
discount
:
(
NSString
*
)
voiceCategory
:
(
NSString
*
)
dataCategory
:
(
NSString
*
)
minsValue
:
(
NSString
*
)
dataValue
:
(
NSString
*
)
provStepValueMins
:
(
NSString
*
)
OfferAudienceLevel
:
(
NSString
*
)
UACIOfferTrackingCode
:
(
NSString
*
)
OFFERCODE1
:
(
NSString
*
)
SCORE
:
(
NSString
*
)
ZONE
:
(
NSString
*
)
WAVE
:
(
NSString
*
)
VALIDITY
:
(
NSString
*
)
TREATMENT_CODE
:
(
NSString
*
)
ccms_session_id
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
{
[[
Warply
sharedService
]
redeemCouponSetsWithSuccessBlock
:
uuid
:
communication_uuid
:
user_msisdn
:
businessService
:
offerName
:
productType
:
provDuration
:
noOfRecurrance
:
price
:
discount
:
voiceCategory
:
dataCategory
:
minsValue
:
dataValue
:
provStepValueMins
:
OfferAudienceLevel
:
UACIOfferTrackingCode
:
OFFERCODE1
:
SCORE
:
ZONE
:
WAVE
:
VALIDITY
:
TREATMENT_CODE
:
ccms_session_id
:^
(
NSDictionary
*
response
)
{
if
(
success
)
{
success
(
response
);
}
}
failureBlock
:^
(
NSError
*
error
)
{
if
(
failure
)
{
failure
(
error
);
}
}];
}
-
(
void
)
getPacingDetailsAsync
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
{
[[
Warply
sharedService
]
getPacingDetailsWithSuccessBlock
:
^
(
NSDictionary
*
response
)
{
...
...
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.h
View file @
e18b3c0
...
...
@@ -389,6 +389,8 @@ WL_VERSION_INTERFACE()
-
(
void
)
redeemCouponSetsWithSuccessBlock
:(
NSString
*
)
uuid
:
(
NSString
*
)
communication_uuid
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
redeemCouponSetsWithSuccessBlock
:(
NSString
*
)
uuid
:
(
NSString
*
)
communication_uuid
:
(
NSString
*
)
user_msisdn
:
(
NSString
*
)
businessService
:
(
NSString
*
)
offerName
:
(
NSString
*
)
productType
:
(
NSString
*
)
provDuration
:
(
NSString
*
)
noOfRecurrance
:
(
NSString
*
)
price
:
(
NSString
*
)
discount
:
(
NSString
*
)
voiceCategory
:
(
NSString
*
)
dataCategory
:
(
NSString
*
)
minsValue
:
(
NSString
*
)
dataValue
:
(
NSString
*
)
provStepValueMins
:
(
NSString
*
)
OfferAudienceLevel
:
(
NSString
*
)
UACIOfferTrackingCode
:
(
NSString
*
)
OFFERCODE1
:
(
NSString
*
)
SCORE
:
(
NSString
*
)
ZONE
:
(
NSString
*
)
WAVE
:
(
NSString
*
)
VALIDITY
:
(
NSString
*
)
TREATMENT_CODE
:
(
NSString
*
)
ccms_session_id
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
cosmoteCouponSharingWithSuccessBlock
:(
NSString
*
)
coupon
:
(
NSString
*
)
sender
:
(
NSString
*
)
receiver
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
;
-
(
void
)
cosmoteSharingWithSuccessBlock
:(
NSString
*
)
sharingId
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:(
void
(
^
)(
NSError
*
error
))
failure
;
...
...
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
View file @
e18b3c0
...
...
@@ -2170,6 +2170,66 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
-
(
void
)
redeemCouponSetsWithSuccessBlock
:
(
NSString
*
)
uuid
:
(
NSString
*
)
communication_uuid
:
(
NSString
*
)
user_msisdn
:
(
NSString
*
)
businessService
:
(
NSString
*
)
offerName
:
(
NSString
*
)
productType
:
(
NSString
*
)
provDuration
:
(
NSString
*
)
noOfRecurrance
:
(
NSString
*
)
price
:
(
NSString
*
)
discount
:
(
NSString
*
)
voiceCategory
:
(
NSString
*
)
dataCategory
:
(
NSString
*
)
minsValue
:
(
NSString
*
)
dataValue
:
(
NSString
*
)
provStepValueMins
:
(
NSString
*
)
OfferAudienceLevel
:
(
NSString
*
)
UACIOfferTrackingCode
:
(
NSString
*
)
OFFERCODE1
:
(
NSString
*
)
SCORE
:
(
NSString
*
)
ZONE
:
(
NSString
*
)
WAVE
:
(
NSString
*
)
VALIDITY
:
(
NSString
*
)
TREATMENT_CODE
:
(
NSString
*
)
ccms_session_id
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
{
NSDictionary
*
postDictionary
=
@{
@"coupon"
:
@{
@"action"
:
@"retrieve_coupon"
,
@"coupon_set"
:
uuid
,
@"communication_uuid"
:
communication_uuid
,
@"extra_data"
:
@{
@"user_msisdn"
:
user_msisdn
,
@"businessService"
:
businessService
,
@"offerName"
:
offerName
,
@"productType"
:
productType
,
@"provDuration"
:
provDuration
,
@"noOfRecurrance"
:
noOfRecurrance
,
@"price"
:
price
,
@"discount"
:
discount
,
@"voiceCategory"
:
voiceCategory
,
@"dataCategory"
:
dataCategory
,
@"minsValue"
:
minsValue
,
@"dataValue"
:
dataValue
,
@"provStepValueMins"
:
provStepValueMins
,
@"InteractiveChannel"
:
@"COSMOTE_OMNI"
,
@"InteractionPoint"
:
ZONE
,
@"Session_ID"
:
ccms_session_id
,
@"OfferAudienceLevel"
:
OfferAudienceLevel
,
@"MSISDN"
:
user_msisdn
,
@"GUID"
:
@""
,
@"parameters"
:
@[
@{
@"Name"
:
@"UACIOfferTrackingCode"
,
@"Value"
:
UACIOfferTrackingCode
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"UACICustomLoggerTableName"
,
@"Value"
:
@"VW_WHITELIST"
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"MSISDN"
,
@"Value"
:
user_msisdn
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"OFFERCODE1"
,
@"Value"
:
OFFERCODE1
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"SCORE"
,
@"Value"
:
SCORE
,
@"Type"
:
@"INT"
},
@{
@"Name"
:
@"PREDICATE"
,
@"Value"
:
@"0"
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"ZONE"
,
@"Value"
:
ZONE
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"APPLICATIONNAME"
,
@"Value"
:
ZONE
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"Session_ID"
,
@"Value"
:
ccms_session_id
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"CAMPAIGN_CODE"
,
@"Value"
:
@"MCC_00006"
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"CAMPAIGN_TYPE"
,
@"Value"
:
@"Inbound"
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"UACIResponseTypeCode"
,
@"Value"
:
@"CON"
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"CHANNEL"
,
@"Value"
:
@"ONE_APP"
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"WAVE"
,
@"Value"
:
WAVE
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"RESPONSECHANNEL"
,
@"Value"
:
@"ONE_APP"
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"VALIDITY"
,
@"Value"
:
VALIDITY
,
@"Type"
:
@"INT"
},
@{
@"Name"
:
@"TREATMENT_CODE"
,
@"Value"
:
TREATMENT_CODE
,
@"Type"
:
@"string"
},
@{
@"Name"
:
@"EventName"
,
@"Value"
:
@"INTEREST_P"
,
@"Type"
:
@"string"
}
]}}};
NSData
*
jsonData
=
[
NSJSONSerialization
dataWithJSONObject
:
postDictionary
options
:
0
error
:
NULL
];
[
self
sendContext8
:
jsonData
successBlock
:
^
(
NSDictionary
*
contextResponse
)
{
if
(
success
)
{
success
(
contextResponse
);
}
NSLog
(
@"**************** WARPLY Response *****************"
);
NSLog
(
@"%@"
,
contextResponse
);
}
failureBlock
:^
(
NSError
*
error
)
{
if
(
failure
)
{
NSDictionary
*
dict
=
[
NSDictionary
alloc
];
dict
=
[
error
userInfo
];
NSString
*
errorCode
=
[
dict
objectForKey
:
@"NSLocalizedDescription"
];
if
([
errorCode
isEqual
:
@"Request failed: unauthorized (401)"
])
{
[
self
refreshToken
:
^
(
NSDictionary
*
response
)
{
[
self
sendContext8
:
jsonData
successBlock
:
^
(
NSDictionary
*
contextResponse
)
{
if
(
success
)
{
success
(
contextResponse
);
}
NSLog
(
@"**************** WARPLY Response *****************"
);
NSLog
(
@"%@"
,
contextResponse
);
}
failureBlock
:^
(
NSError
*
error
)
{
if
(
failure
)
{
failure
(
error
);
}
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
}];
}
NSLog
(
@"Error at redeem coupon sets %@"
,
error
);
}
}];
}
-
(
void
)
cosmoteCouponSharingWithSuccessBlock
:
(
NSString
*
)
coupon
:
(
NSString
*
)
sender
:
(
NSString
*
)
receiver
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
{
NSDictionary
*
postDictionary
=
@{
@"coupon"
:
@{
@"action"
:
@"share"
,
@"coupon"
:
coupon
,
@"sender_msisdn"
:
sender
,
@"receiver_msisdn"
:
receiver
}};
...
...
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
e18b3c0
...
...
@@ -3479,6 +3479,34 @@ public class swiftApi {
}
public
func
redeemCouponSetAsync
(
uuid
:
String
,
communication_uuid
:
String
,
user_msisdn
:
String
,
businessService
:
String
,
offerName
:
String
,
productType
:
String
,
provDuration
:
String
,
noOfRecurrance
:
String
,
price
:
String
,
discount
:
String
,
voiceCategory
:
String
,
dataCategory
:
String
,
minsValue
:
String
,
dataValue
:
String
,
provStepValueMins
:
String
,
OfferAudienceLevel
:
String
,
UACIOfferTrackingCode
:
String
,
OFFERCODE1
:
String
,
SCORE
:
String
,
ZONE
:
String
,
WAVE
:
String
,
VALIDITY
:
String
,
TREATMENT_CODE
:
String
,
ccms_session_id
:
String
,
_
redeemCouponSetCallback
:
@escaping
(
_
responseData
:
GenericResponseModel
?)
->
Void
)
->
Void
{
let
instanceOfMyApi
=
MyApi
()
instanceOfMyApi
.
redeemCouponSetAsync
(
uuid
,
communication_uuid
,
user_msisdn
,
businessService
,
offerName
,
productType
,
provDuration
,
noOfRecurrance
,
price
,
discount
,
voiceCategory
,
dataCategory
,
minsValue
,
dataValue
,
provStepValueMins
,
OfferAudienceLevel
,
UACIOfferTrackingCode
,
OFFERCODE1
,
SCORE
,
ZONE
,
WAVE
,
VALIDITY
,
TREATMENT_CODE
,
ccms_session_id
,
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
(
"redeemCouponSet error: "
)
print
(
error
)
print
(
"===================="
)
redeemCouponSetCallback
(
nil
)
}
}
public
func
setUniqueCampaignList
(
_
campaigns
:
Array
<
CampaignItemModel
>
)
->
Void
{
// let userTag = self.getUserTag()
// var campaignsArray:Array<CampaignItemModel> = []
...
...
Please
register
or
login
to post a comment