List of action beacons for the current page
| Name | Type | Description | Notes |
|---|---|---|---|
| app_state | str | Application state (e.g., foreground, background) | [optional] |
| beacon_clockskew | int | Clock skew in milliseconds between client and server | [optional] |
| beacon_id | str | Beacon identifier | |
| beacon_type | str | Type of beacon | |
| bytes_ingested_metadata | int | Bytes ingested for metadata | [optional] |
| event_type | str | Event type (e.g., st=start, fs=frustration signal, oc=orientation change) | [optional] |
| frustration_signal | str | Frustration signal type (e.g., rt=rage tap) | [optional] |
| keyboard_operation | str | Keyboard operation indicator | [optional] |
| mobile_app_id | str | Mobile app identifier | |
| orientation_change | str | Orientation change indicator (l=landscape, p=portrait) | [optional] |
| scroll_direction | str | Scroll direction | [optional] |
| scroll_duration | str | Scroll duration in milliseconds | [optional] |
| session_id | str | Session identifier | |
| session_replay_version | str | Session replay version | [optional] |
| timestamp | int | Timestamp when the action was captured (epoch milliseconds) | |
| view_component_class_name | str | View component class name | [optional] |
| view_component_id | str | View component identifier | [optional] |
from instana_client.models.action_beacon import ActionBeacon
# TODO update the JSON string below
json = "{}"
# create an instance of ActionBeacon from a JSON string
action_beacon_instance = ActionBeacon.from_json(json)
# print the JSON string representation of the object
print(ActionBeacon.to_json())
# convert the object into a dict
action_beacon_dict = action_beacon_instance.to_dict()
# create an instance of ActionBeacon from a dict
action_beacon_from_dict = ActionBeacon.from_dict(action_beacon_dict)