/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface CreateUserRequest { /** The email address of the user. */ email?: string; /** The first name of the user. */ firstName?: string; /** The last name of the user. */ lastName?: string; /** The metadata associated with the user. */ metadata?: Record; /** The unique identifier of the user. */ userId?: string; }