Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 697 Bytes

File metadata and controls

19 lines (13 loc) · 697 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);

TeamsAppSettings teamsAppSettings = new TeamsAppSettings();
teamsAppSettings.setOdataType("#microsoft.graph.teamsAppSettings");
CustomAppSettings customAppSettings = new CustomAppSettings();
customAppSettings.setDeveloperToolsForShowingAppUsageMetrics(EnumSet.of(AppDevelopmentPlatforms.DeveloperPortal));
teamsAppSettings.setCustomAppSettings(customAppSettings);
TeamsAppSettings result = graphClient.teamwork().teamsAppSettings().patch(teamsAppSettings);