1,824 bytes added
, 17:50, 16 June 2014
{{Api_DataType_Spec
|Description=Represent an Event object that has three parameters: timestamp, event and data. It can be used by AddEvent and AddEventBatch to add an event for the analytics tracking. Some metrics to analyze the navigation and behavior could generated by this values in the MIB Tools.
|Members=
{{{!}} border="2" style="width:800px" cellspacing="0" cellpadding="10"
{{!}}- style="background:#88ccff;font-size:110%"
! Field
! Data Type
! Description
{{!}}- valign="top"
! Timestamp
{{!}} String
{{!}} A string with numbers that represent a date and time at the moment of the event has been add to the platform.
{{!}}- valign="top"
! Event
{{!}} String
{{!}} A name that identify the information registered by this event.
{{!}}- valign="top"
! Data
{{!}} Object
{{!}} Object that contains pair of key:values to set data info as much as needed about the event.
{{!}}- valign="top"
{{!}}}
|Example=
<syntaxhighlight lang="javascript">
{
"timestamp": 41324231,
"event": "pulsando el botón de login",
"data":
{
"EventType":"STOP",
"ChannelNumber":1,
"ChannelName":"TVE 1",
"ChannelCallLetter":"",
"StreamQuality":"SD",
"UniqueUserCode":null,
"DeviceId":"3333333333332222222222227128",
"OBInstanceCode":25,
"UserType":null
}
}
</syntaxhighlight>
|KnownIssues=
None
|VersionHistory=
{{{!}} border="2" style="width:800px;" cellpadding="5" cellspacing="0"
{{!}}- style="background:#88ccff;font-size:110%"
! API Version Number
! Change description
! Changes author
{{!}}- valign="top"
! 2.0
{{!}} Initial data type implementation
{{!}} Harley Cabral
{{!}}- valign="top"
{{!}}}
|SeeAlso=
* [[AddEvent]]
* [[AddEventBatch]]
}}