Apex Code |
/*
This file is generated and isn't the actual source code for this
managed global class.
This read-only file shows the class's global constructors,
methods, variables, and properties.
To enable code to compile, all methods return null.
*/
global class HL7Context {
global String messageCode {
get;
set;
}
global HealthCloudGA.HL7MSH mshObject {
get;
set;
}
global String receivingApplication {
get;
set;
}
global String receivingFacility {
get;
set;
}
global String sendingApplication {
get;
set;
}
global String sendingFacility {
get;
set;
}
global String triggerEvent {
get;
set;
}
global String versionId {
get;
set;
}
global HL7Context() {
}
global HealthCloudGA.HL7MSH getMshObject() {
return null;
}
global Boolean isValid(String scope) {
return null;
}
global void setMshObject(HealthCloudGA.HL7MSH mshObject) {
}
global void validate(String scope) {
}
}
|