mirror of
https://github.com/standardnotes/server
synced 2026-07-14 18:01:42 -04:00
10 lines
242 B
TypeScript
10 lines
242 B
TypeScript
export interface MessageHttpRepresentation {
|
|
uuid: string
|
|
recipient_uuid: string
|
|
sender_uuid: string
|
|
encrypted_message: string
|
|
replaceability_identifier: string | null
|
|
created_at_timestamp: number
|
|
updated_at_timestamp: number
|
|
}
|