Packagecom.distriqt.extension.flurry
Interfacepublic interface UserProperties

User Properties allow you to label your users based on preferences, behaviors or attributes unique to your app.



Public Methods
 MethodDefined By
  
addValue(key:String, value:String):void
Adds a User Property value.
UserProperties
  
flag(key:String):void
Exactly set, or replace if any previously exists, any value for the property to a single true state Implies that value is boolean and should only be flagged and cleared.
UserProperties
  
remove(key:String):void
Removes all values.
UserProperties
  
removeValue(key:String, value:String):void
Removes a specific User Property value.
UserProperties
  
setValue(key:String, value:String):void
Sets and replaces (if any exist) the value for the property
UserProperties
Method Detail
addValue()method
public function addValue(key:String, value:String):void

Adds a User Property value. Adding values already included in the state has no effect and does not error.

Parameters

key:String
 
value:String

flag()method 
public function flag(key:String):void

Exactly set, or replace if any previously exists, any value for the property to a single true state Implies that value is boolean and should only be flagged and cleared.

Parameters

key:String

remove()method 
public function remove(key:String):void

Removes all values.

Parameters

key:String

removeValue()method 
public function removeValue(key:String, value:String):void

Removes a specific User Property value. Removing values not already included in the state has no effect and does not error.

Parameters

key:String
 
value:String

setValue()method 
public function setValue(key:String, value:String):void

Sets and replaces (if any exist) the value for the property

Parameters

key:String
 
value:String