use of com.microsoft.graph.models.Drive in project msgraph-beta-sdk-java by microsoftgraph.
the class UserTests method meDrive.
@Test
public void meDrive() {
// GET me/drive
final Drive drive = graphServiceClient.me().drive().buildRequest().get();
assertNotNull(drive);
}
Aggregations