/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * token: "eyJ0_SECRET_TOKEN", * valid: true * } */ export interface GuestToken { /** The token used to authenticate the guest */ token: string; valid: boolean; }