I am a newbie into FHIR and learning the ways of it.
I have created a custom class with a BackboneElement static class defined in it.
working scenario : Received data from parsed it into object - no issue.
failure scenario : when converting object to json, the object with BackboneElement class is getting skipped.
please suggest what could be wrong?
class A{
private StringType a;
@Block()
public static class B extends BackboneElement{
}
}