import type * as CandidApi from "../../../index"; export interface UniversalEncounterCreateFromPreEncounter extends CandidApi.encountersUniversal.UniversalEncounterCreateFromPreEncounterBase { /** Describes the currently expected target form for this encounter. This effects what validations and queues the form is processed under. */ submissionExpectation: CandidApi.encounters.v4.EncounterSubmissionExpectation; /** * The rendering provider is the practitioner -- physician, nurse practitioner, etc. -- performing the service. * For telehealth services, the rendering provider performs the visit, asynchronous communication, or other service. The rendering provider address should generally be the same as the service facility address. */ renderingProvider?: CandidApi.encounterProviders.v2.RenderingProvider; /** The health care code information associated with this encounter, which includes things such as diagnoses, vitals, procedures, occurrences, reason for visit, and numerous other code related fields. */ healthCareCodeInformation?: CandidApi.healthCareCodeInformation.v1.HealthCareCodeInformationCreate; /** Box 24B on the CMS-1500 claim form. 837p Loop2300, CLM-05-1. This box is not used on a UB-04 or 837i claim form. 02 for telemedicine, 11 for in-person. Full list [here](https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code_Set). */ placeOfServiceCode?: CandidApi.FacilityTypeCode; serviceLines?: CandidApi.serviceLines.v2.UniversalServiceLineCreate[]; /** 837i NM1 2500 variant for Loop ID-2310. Used to indicate the individual whom has overall responsibility for the patient in institutional claims processing. */ attendingProvider?: CandidApi.encounterProviders.v2.RenderingProvider; /** * 837i Loop 2300 DTP-03 * Extension of the admission date with hour (0-23 integer) details. */ admissionHour?: number; /** 837i Loop 2300 CL1-01 Code used to indicate the priority of an admission or visit. Equivalent to Form Locator 14 Priority of Admission on a UB-04 claim, not used on CMS-1500 claim forms. */ admissionTypeCode?: CandidApi.x12.v1.TypeOfAdmissionOrVisitCode; /** 837i Loop 2300 CLI1-02 Code used to indicate the conditions under which an admission occurs. Equivalent to Form Locator 15 Point of Origin on a UB-04 claim, not used on CMS-1500 claim forms. */ admissionSourceCode?: CandidApi.x12.v1.PointOfOriginForAdmissionOrVisitCode; /** * 837i Loop 2300 DTP-03 * Extension of the discharge date with hour (0-23 integer) details. */ dischargeHour?: number; /** * 837i CL1-03 or Form Locator 17 on a UB-04 claim form. This is a required field on UB-04 claims. * Code indicating patient status as of the "statement covers through date" . */ dischargeStatus?: CandidApi.x12.v1.PatientDischargeStatusCode; /** 837i NM1 2500 variant for Loop ID-2310. Used to indicate the individual whom has primary responsibility for surgical procedures in institutional claims processing. */ operatingProvider?: CandidApi.encounterProviders.v2.RenderingProvider; /** 837i NM1 2500 variant for Loop ID-2310. Used to indicate the individual whom has secondary responsibility for surgical procedures in institutional claims processing. Only used when operating_provider is also set. */ otherOperatingProvider?: CandidApi.encounterProviders.v2.RenderingProvider; /** Four digit code used in institutional forms to indicate the type of bill (e.g., hospital inpatient, hospital outpatient). First digit is a leading 0, followed by the type_of_facility, type_of_care, then frequency_code. Professional forms are not required to submit this attribute. You may send the 4 digit code via raw_code, or each individual digit separately via composite_codes. */ typeOfBill?: CandidApi.x12.v1.TypeOfBillCompositeUpdate; /** 837i-REF1000 -- an optional state indicating where an accident related to the encounter occurred. */ accidentStateOrProvinceCode?: CandidApi.State; }