ItemHashHttpRepresentation.ts 434 B

1234567891011121314151617
  1. export interface ItemHashHttpRepresentation {
  2. uuid: string
  3. user_uuid: string
  4. content?: string
  5. content_type: string | null
  6. deleted?: boolean
  7. duplicate_of?: string | null
  8. auth_hash?: string
  9. enc_item_key?: string
  10. items_key_id?: string
  11. key_system_identifier: string | null
  12. shared_vault_uuid: string | null
  13. created_at?: string
  14. created_at_timestamp?: number
  15. updated_at?: string
  16. updated_at_timestamp?: number
  17. }