use of com.google.cloud.dialogflow.cx.v3beta1.GetFlowRequest in project java-dialogflow-cx by googleapis.
the class ITSystemTest method getFlowTest.
@Test
public void getFlowTest() {
GetFlowRequest request = GetFlowRequest.newBuilder().setName(flowName).build();
Flow flow = flowsClient.getFlow(request);
assertFlowDetails(flow);
}
Aggregations