/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Properties used to update an existing guest * * @example * { * email: "updated@example.com", * name: "Your Name Updated" * } */ export interface GuestConfigUpdate { environmentId?: Flatfile.EnvironmentId; email?: string; name?: string; spaces?: Flatfile.GuestSpace[]; }