/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * guestId: "us_g_YOUR_ID", * spaceId: "us_sp_YOUR_ID", * fromName: "Your Name", * message: "Hello, I would like to invite you to my space." * } */ export interface Invite { guestId: Flatfile.GuestId; spaceId: Flatfile.SpaceId; /** The name of the person or company sending the invitation */ fromName?: string; /** Message to send with the invite */ message?: string; }