import type * as CandidApi from "../../../index"; export interface EncounterServiceFacilityUpdateWithOptionalAddress { organizationName?: string; /** * An NPI specific to the service facility if applicable, i.e. if it has one and is not under the billing provider's NPI. * Box 32 section (a) of the CMS-1500 claim form. */ npi?: string; /** zip_plus_four_code is required for service facility address. When the zip_plus_four_code is not available use "9998" as per CMS documentation. */ address?: CandidApi.StreetAddressShortZipOptional; /** * An additional identifier for the service facility other than the facility's NPI. Some payers may require this field. * Potential examples: state license number, provider commercial number, or location number. * Box 32 section (b) of the CMS-1500 claim form. */ secondaryIdentification?: string; /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */ mammographyCertificationNumber?: string; }