/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * foreignId: "my-foreign-id" * } */ export interface UserRequestSchema { /** The user's email address. Abound assume's you have taken the proper steps to verify the ownership of this email address. */ email?: string; /** The customer-specific unique identifier associated with this user. */ foreignId?: string; /** Use metadata for storing additional user data. For filtering, please use `foreignId`. */ metadata?: Record; }