mirror of
https://github.com/standardnotes/server
synced 2026-07-31 14:16:46 -04:00
20 lines
523 B
TypeScript
20 lines
523 B
TypeScript
export interface ItemHttpRepresentation {
|
|
uuid: string
|
|
items_key_id: string | null
|
|
duplicate_of: string | null
|
|
enc_item_key: string | null
|
|
content: string | null
|
|
content_type: string
|
|
auth_hash: string | null
|
|
deleted: boolean
|
|
created_at: string
|
|
created_at_timestamp: number
|
|
updated_at: string
|
|
updated_at_timestamp: number
|
|
updated_with_session: string | null
|
|
key_system_identifier: string | null
|
|
shared_vault_uuid: string | null
|
|
user_uuid: string | null
|
|
last_edited_by_uuid: string | null
|
|
}
|