Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 434 Bytes

update-set-php-snippets.md

File metadata and controls

19 lines (12 loc) · 434 Bytes
description
Automatically generated file. DO NOT MODIFY
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\TermStore\Set;


$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);

$requestBody = new Set();
$requestBody->setDescription('mySet');

$result = $graphServiceClient->termStore()->sets()->bySetId('set-id')->patch($requestBody)->wait();