| Name |
Type |
Description |
Notes |
| activity_id |
str |
Unique identifier for the activity generated by the source BPM tool |
[optional] |
| activity_name |
str |
Name of the activity |
[optional] |
| activity_start |
int |
Unix timestamp representing the activity's start time |
[optional] |
| activity_type |
str |
Type of the activity |
|
| call_id |
str |
|
[optional] |
| endpoint_ids |
List[str] |
|
[optional] |
| process_definition_id |
str |
The identifier of the process the activity is an instance of. |
[optional] |
| process_definition_name |
str |
The name of the process that the activity is an instance of |
[optional] |
| root_process_instance_id |
str |
The id of the root process for the activity |
[optional] |
from instana_client.models.business_activity import BusinessActivity
# TODO update the JSON string below
json = "{}"
# create an instance of BusinessActivity from a JSON string
business_activity_instance = BusinessActivity.from_json(json)
# print the JSON string representation of the object
print(BusinessActivity.to_json())
# convert the object into a dict
business_activity_dict = business_activity_instance.to_dict()
# create an instance of BusinessActivity from a dict
business_activity_from_dict = BusinessActivity.from_dict(business_activity_dict)
[Back to Model list] [Back to API list] [Back to README]