UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

203 lines (202 loc) 5.41 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class CSR_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Sponsor Study ID */ this.CSR_1 = { index: 0, identifier: "CSR_1", description: "Sponsor Study ID", length: 60, isOptional: false, isRepeatable: false, value: "", }; /** * Alternate Study ID */ this.CSR_2 = { index: 1, identifier: "CSR_2", description: "Alternate Study ID", length: 60, isOptional: true, isRepeatable: false, value: "", }; /** * Institution Registering the Patient */ this.CSR_3 = { index: 2, identifier: "CSR_3", description: "Institution Registering the Patient", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Sponsor Patient ID */ this.CSR_4 = { index: 3, identifier: "CSR_4", description: "Sponsor Patient ID", length: 30, isOptional: false, isRepeatable: false, value: "", }; /** * Alternate Patient ID - CSR */ this.CSR_5 = { index: 4, identifier: "CSR_5", description: "Alternate Patient ID - CSR", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * Date/Time Of Patient Study Registration */ this.CSR_6 = { index: 5, identifier: "CSR_6", description: "Date/Time Of Patient Study Registration", length: 26, isOptional: false, isRepeatable: false, value: "", }; /** * Person Performing Study Registration */ this.CSR_7 = { index: 6, identifier: "CSR_7", description: "Person Performing Study Registration", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Study Authorizing Provider */ this.CSR_8 = { index: 7, identifier: "CSR_8", description: "Study Authorizing Provider", length: 250, isOptional: false, isRepeatable: true, value: "", }; /** * Date/time Patient Study Consent Signed */ this.CSR_9 = { index: 8, identifier: "CSR_9", description: "Date/time Patient Study Consent Signed", length: 26, isOptional: true, isRepeatable: false, value: "", }; /** * Patient Study Eligibility Status */ this.CSR_10 = { index: 9, identifier: "CSR_10", description: "Patient Study Eligibility Status", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Study Randomization Date/time */ this.CSR_11 = { index: 10, identifier: "CSR_11", description: "Study Randomization Date/time", length: 26, isOptional: true, isRepeatable: true, value: "", }; /** * Randomized Study Arm */ this.CSR_12 = { index: 11, identifier: "CSR_12", description: "Randomized Study Arm", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Stratum for Study Randomization */ this.CSR_13 = { index: 12, identifier: "CSR_13", description: "Stratum for Study Randomization", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Patient Evaluability Status */ this.CSR_14 = { index: 13, identifier: "CSR_14", description: "Patient Evaluability Status", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Date/time Ended Study */ this.CSR_15 = { index: 14, identifier: "CSR_15", description: "Date/time Ended Study", length: 26, isOptional: true, isRepeatable: false, value: "", }; /** * Reason Ended Study */ this.CSR_16 = { index: 15, identifier: "CSR_16", description: "Reason Ended Study", length: 250, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = CSR_Fields;