RevisionHttpRepresentation.ts 398 B

123456789101112131415
  1. export interface RevisionHttpRepresentation {
  2. uuid: string
  3. item_uuid: string
  4. content: string | null
  5. content_type: string
  6. items_key_id: string | null
  7. enc_item_key: string | null
  8. auth_hash: string | null
  9. created_at: string
  10. updated_at: string
  11. key_system_identifier: string | null
  12. shared_vault_uuid: string | null
  13. user_uuid: string | null
  14. last_edited_by_uuid: string | null
  15. }