Advertisement
Guest User

Untitled

a guest
May 9th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | Source Code | 0 0
  1. type Events = {
  2. id: string;
  3. title: string;
  4. email: string;
  5. fullName: string;
  6. contactPerson: string;
  7. department: string;
  8. status: "PENDING" | "SUCCESS";
  9.  
  10. dateOfEvent: string;
  11. startingTime: string;
  12. endingTime: string;
  13.  
  14. purpose: string;
  15.  
  16. doesHaveDryRun: string;
  17. dryRunDate?: string | null; // Optional
  18. dryRunStart?: string | null; // Optional
  19. dryRunEnd?: string | null; // Optional
  20.  
  21. doesHaveTCETAssitance: string;
  22. tcetOtherAssitance?: string | null; // Optional
  23.  
  24. meetingTypeOption: string;
  25. meetingTypeServices: string;
  26. meetingTypeServiceLink?: string | null; // Optional
  27. cameraSetup?: string | null; // Optional
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement