How to find Workflow Interface and Implementing Class from StartWorkflowExecutionRequest and StartWorkflowExecutionResponse

Hi

Looking for input on , if its possible to get Workflow Interface and Implementing Class from StartWorkflowExecutionRequest or StartWorkflowExecutionResponse.

Thanks in advance.
Best Regards
Krishnendu

It is not possible, as mapping of workflow type to the interface and implementation classes is local to the worker. You can implement a query that returns the workflow implementation class. Something like:

public String getImplementationClass() {
   return this.getClass().getName();
}

Thank you @maxim .