import type * as Vital from "../../../../index.js"; /** * @example * { * firstName: "first_name", * lastName: "last_name", * email: "email", * phoneNumber: "phone_number", * gender: "gender", * dob: "dob", * address: { * firstLine: "first_line", * country: "country", * zip: "zip", * city: "city", * state: "state" * } * } */ export interface UserInfoCreateRequest { firstName: string; lastName: string; email: string; phoneNumber: string; gender: string; dob: string; address: Vital.Address; medicalProxy?: Vital.GuarantorDetails; race?: Vital.Race; ethnicity?: Vital.Ethnicity; sexualOrientation?: Vital.SexualOrientation; genderIdentity?: Vital.GenderIdentity; }