Data Integration
Mandatory Properties
Video Apps
2 min
these properties are applicable to video based apps properties property name description type of value videos watched number of videos watched so far number code example function updateuserproperties() { const properties = { "videos watched" 5 }; cooeesdk updateuserprofile(properties); } ts function updateuserproperties() { const properties = { 'videos watched' 5 }; cooeesdk updateuserprofile(properties); }void updateuserproperties() { map\<string, object> properties = new hashmap<>(); properties put("videos watched", 5); cooeesdk updateuserprofile(properties); }function updateuserproperties() { val properties = mapof( "videos watched" 5 ); cooeesdk updateuserprofile(properties); } (void) updateuserproperties { nsdictionary properties = @{ @"videos watched" @5 }; @try{ \[cooeesdk updateuserprofile\ properties error\ nil]; } @catch (nsexception exception) { nslog(@"%@", exception reason); } @finally { nslog(@"finally condition"); } }func updateuserproperties(){ let properties = \[ "videos watched" 5 ] do { try cooeesdk updateuserprofile(properties) } catch { print("\\(error)") } } dart void updateuserproperties() { var properties = { "videos watched" 5 }; cooeesdk updateuserprofile(properties); }