public StartWorkflowExecutionResult Unmarshall(JsonUnmarshallerContext context)
        {
            StartWorkflowExecutionResult result = new StartWorkflowExecutionResult();

            result.Run = RunUnmarshaller.GetInstance().Unmarshall(context);
            return(result);
        }
Exemplo n.º 2
0
 public static RunUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new RunUnmarshaller();
     }
     return(instance);
 }
 private static void UnmarshallResult(JsonUnmarshallerContext context, StartWorkflowExecutionResponse response)
 {
     response.Run = RunUnmarshaller.GetInstance().Unmarshall(context);
     return;
 }