Attachment constructor

Attachment({
  1. required String id,
  2. required String conversationId,
  3. required String companyId,
  4. required String userId,
  5. required String previousQueryId,
  6. required String type,
  7. required String fileName,
  8. required String link,
  9. required String extension,
  10. required String ragId,
  11. required bool summary,
  12. required int tokens,
})

Implementation

Attachment({
  required this.id,
  required this.conversationId,
  required this.companyId,
  required this.userId,
  required this.previousQueryId,
  required this.type,
  required this.fileName,
  required this.link,
  required this.extension,
  required this.ragId,
  required this.summary,
  required this.tokens,
});