Skip to content

TableauEventserviceTypesV1SerializedEvent

Properties

Name Type Description Notes
id str [optional]
type str [optional]
user_id int [optional]
site_id int [optional]
session_id str [optional]
timestamp str [optional]
details str [optional]
site_luid str [optional]
user_luid str [optional]

Example

from openapi_client.models.tableau_eventservice_types_v1_serialized_event import TableauEventserviceTypesV1SerializedEvent

# TODO update the JSON string below
json = "{}"
# create an instance of TableauEventserviceTypesV1SerializedEvent from a JSON string
tableau_eventservice_types_v1_serialized_event_instance = TableauEventserviceTypesV1SerializedEvent.from_json(json)
# print the JSON string representation of the object
print(TableauEventserviceTypesV1SerializedEvent.to_json())

# convert the object into a dict
tableau_eventservice_types_v1_serialized_event_dict = tableau_eventservice_types_v1_serialized_event_instance.to_dict()
# create an instance of TableauEventserviceTypesV1SerializedEvent from a dict
tableau_eventservice_types_v1_serialized_event_from_dict = TableauEventserviceTypesV1SerializedEvent.from_dict(tableau_eventservice_types_v1_serialized_event_dict)
[Back to Model list] [Back to API list] [Back to README]