import type * as CandidApi from "../../../index"; export interface PatientUpdateWithOptionalAddress { firstName?: string; lastName?: string; gender?: CandidApi.Gender; /** The ID used to identify this individual in your system. For example, your internal patient ID or an EHR patient ID. */ externalId?: string; /** Box 3 on the CMS-1500 claim form or Form Locator 10 on a UB-04 claim form. The date format should be in ISO 8601 date; formatted YYYY-MM-DD (i.e. 2012-02-01) */ dateOfBirth?: string; /** Box 5 on the CMS-1500 claim form or Form Locator 9 on a UB-04 claim form. */ address?: CandidApi.StreetAddressShortZipOptional; phoneNumbers?: CandidApi.PhoneNumberOptional[]; phoneConsent?: boolean; email?: CandidApi.Email; emailConsent?: boolean; autoChargeConsent?: boolean; /** On update, we will replace the existing list of non-insurance payers with the new list if populated. */ nonInsurancePayers?: CandidApi.nonInsurancePayers.v1.NonInsurancePayerId[]; /** On update, we will replace the existing list of non-insurance payers with the new list if populated. */ nonInsurancePayersInfo?: CandidApi.PatientNonInsurancePayerInfoCreateOptional[]; }