export class ApiRfiRequest { assignee_ids: number[]; subject: string; due_date: string; question: RfiQuestion; draft: boolean; personal: boolean; constructor({ assignee_ids, subject, due_date, question, personal, draft}: Partial = {}) { this.assignee_ids = assignee_ids!; this.subject = subject!; this.due_date = due_date!; this.question = question!; this.personal = personal!; this.draft = draft!; } } class RfiQuestion { body: string; }