RevisionHttpRepresentation.ts 260 B

1234567891011
  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. }