use of com.google.cloud.dialogflow.cx.v3beta1.GetEntityTypeRequest in project java-dialogflow-cx by googleapis.
the class ITSystemTest method getEntityTypeTest.
@Test
public void getEntityTypeTest() {
GetEntityTypeRequest request = GetEntityTypeRequest.newBuilder().setName(entityTypesName).build();
EntityType entityType = entityTypesClient.getEntityType(request);
assertEntityTypesDetails(entityType);
}
Aggregations