You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are the files in hl7x/2.3 folder hand generated? It looks like they are machine generated, but the "gen" program isn't complete enough to generate them.
Clarification as to the hl7x/2.3 package would be appreciated.
The text was updated successfully, but these errors were encountered:
Sorry about that! I didn't have time to actually finish creating the generator (because of a deadline). You are correct in that the files are generated (sort of), but I did it in a very hacky way.
package hl7v2_3
type Ce struct {
// identifier
Identifier Id `position:"CE.1"`
// text
Text St `position:"CE.2"`
// name of coding system
NameOfCodingSystem St `position:"CE.3"`
// alternate identifier
AlternateIdentifier Id `position:"CE.4"`
// alternate text
AlternateText St `position:"CE.5"`
// name of alternate coding system
NameOfAlternateCodingSystem St `position:"CE.6"`
}
I then cleaned up whatever was wrong and the types manually (although I could have done type conversions in the script). So you can see why I didn't make this public... heh
Are the files in hl7x/2.3 folder hand generated? It looks like they are machine generated, but the "gen" program isn't complete enough to generate them.
Clarification as to the hl7x/2.3 package would be appreciated.
The text was updated successfully, but these errors were encountered: