| Name |
Type |
Description |
Notes |
| resource |
str |
Resource of Activity |
[optional] |
| type |
str |
Type of Activity |
[optional] |
| source |
str |
The Source of the activity |
[optional] |
| source_ip_address |
str |
The Source IP address of the user |
[optional] |
| message |
str |
The activity message |
[optional] |
| status |
ActivityStatus |
|
[optional] |
| inserted_date |
str |
Inserted Timestamp |
[optional] |
| user_id |
str |
User who added document |
[optional] |
| delegation |
ActivityDelegation |
|
[optional] |
| document_id |
object |
Document Identifier |
[optional] |
| artifact_id |
object |
Document Artifact Identifier |
[optional] |
| attribute_key |
object |
Document Attribute Key |
[optional] |
| entity_type_id |
str |
Entity Type Identifier |
[optional] |
| entity_id |
str |
Entity Identifier |
[optional] |
| api_key |
str |
API Key |
[optional] |
| ruleset_id |
str |
Ruleset Identifier |
[optional] |
| var_schema |
str |
Schema Identifier |
[optional] |
| mapping_id |
str |
Mapping Identifier |
[optional] |
| classification_id |
str |
Classification Identifier |
[optional] |
| rule_id |
str |
Ruleset Rule Identifier |
[optional] |
| workflow_id |
str |
Workflow Identifier |
[optional] |
| queue_id |
str |
Queue Identifier |
[optional] |
| webhook_id |
str |
Webhook Identifier |
[optional] |
| locale |
str |
Locale Identifier |
[optional] |
| control_policy |
str |
Control Policy Type |
[optional] |
| changes |
Dict[str, UserActivityChanges] |
|
[optional] |
from formkiq_client.models.activity import Activity
# TODO update the JSON string below
json = "{}"
# create an instance of Activity from a JSON string
activity_instance = Activity.from_json(json)
# print the JSON string representation of the object
print(Activity.to_json())
# convert the object into a dict
activity_dict = activity_instance.to_dict()
# create an instance of Activity from a dict
activity_from_dict = Activity.from_dict(activity_dict)
[Back to Model list] [Back to API list] [Back to README]