Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 662 Bytes

File metadata and controls

18 lines (12 loc) · 662 Bytes
description Automatically generated file. DO NOT MODIFY
// Code snippets are only available for the latest version. Current version is 6.x

GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);

com.microsoft.graph.beta.models.ediscovery.CaseEscaped caseEscaped = new com.microsoft.graph.beta.models.ediscovery.CaseEscaped();
caseEscaped.setDisplayName("My Case 1 - Renamed");
caseEscaped.setDescription("Updated description");
caseEscaped.setExternalId("Updated externalId");
com.microsoft.graph.models.ediscovery.Case result = graphClient.compliance().ediscovery().cases().byCaseId("{case-id}").patch(caseEscaped);