| Name | Type | Description | Notes |
|---|
| identifier | str | This is the contact identifier. Contact id and email can be used interchangeably. | [optional] |
| name | str | Event name | |
| data | Dict[str, object] | Event data | [optional] |
| time | int | Unix timestamp (in seconds since January 1, 1970) representing when the event occurred. | [optional] |
fromsendx_python_sdk.models.custom_event_requestimportCustomEventRequest# TODO update the JSON string belowjson="{}"# create an instance of CustomEventRequest from a JSON stringcustom_event_request_instance=CustomEventRequest.from_json(json)
# print the JSON string representation of the objectprint(CustomEventRequest.to_json())
# convert the object into a dictcustom_event_request_dict=custom_event_request_instance.to_dict()
# create an instance of CustomEventRequest from a dictcustom_event_request_from_dict=CustomEventRequest.from_dict(custom_event_request_dict)[Back to Model list][Back to API list][Back to README]