`
DMP.addBehaviorData("iOS User : Actions : Open App Event", forType:"seg")
DMP.sendBehaviorData() {
result in
print("Lotame result \(result)")
print("Lotame error Message \(result.error.debugDescription)")
if result.isSuccess{
//Success
print("Lotame Success Run app")
} else{
//Failure
print("Lotame Failed Run app")
}
}`
I print, i got this
Lotame result failure(LotameDMP.LotameError)
Lotame error Message Optional(LotameDMP.LotameError)
Lotame Failed Run app
`
DMP.addBehaviorData("iOS User : Actions : Open App Event", forType:"seg")
I print, i got this
Lotame result failure(LotameDMP.LotameError)
Lotame error Message Optional(LotameDMP.LotameError)
Lotame Failed Run app