Files
standardnotes-app-web/packages/responses/src/Domain/UserEvent/UserEventServerHash.ts

11 lines
238 B
TypeScript

import { UserEventType } from './UserEventType'
export type UserEventServerHash = {
uuid: string
user_uuid: string
event_type: UserEventType
event_payload: string
created_at_timestamp?: number
updated_at_timestamp?: number
}