plane/types/invitation.d.ts

17 lines
307 B
TypeScript
Raw Normal View History

2022-11-19 14:21:26 +00:00
import { IWorkspace } from "./";
export interface IWorkspaceInvitation {
id: string;
workspace: IWorkspace;
created_at: Date;
updated_at: Date;
email: string;
accepted: boolean;
token: string;
message: string;
responded_at: Date;
role: number;
created_by: null;
updated_by: null;
}