import type * as CandidApi from "../../../index"; export interface UniversalEncounterUpdate extends CandidApi.encountersUniversal.UniversalEncounterUpdateBase { /** 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.HealthCareCodeInformationUpdate; /** 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.RenderingProviderUpdate; /** * 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.RenderingProviderUpdate; /** 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.RenderingProviderUpdate; /** 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; /** Describes the currently expected target form for this encounter. This effects what validations and queues the form is processed under. When this value is not set, it should be assumed to be TARGET_PROFESSIONAL. */ submissionExpectation?: CandidApi.encounters.v4.EncounterSubmissionExpectation; }