import type * as CandidApi from "../../../index"; /** * @example * { * organizationName: "Test Organization", * address: { * address1: "123 Main St", * address2: "Apt 1", * city: "New York", * state: CandidApi.State.Ny, * zipCode: "10001", * zipPlusFourCode: "1234" * } * } */ export interface EncounterServiceFacilityUpdate { 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.StreetAddressLongZip; /** * 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; }