Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 960 Bytes

update-mailboxsettings-1-csharp-snippets.md

File metadata and controls

40 lines (33 loc) · 960 Bytes
description
Automatically generated file. DO NOT MODIFY
// Code snippets are only available for the latest version. Current version is 5.x// DependenciesusingMicrosoft.Graph.Models;varrequestBody=newMailboxSettings{AutomaticRepliesSetting=newAutomaticRepliesSetting{Status=AutomaticRepliesStatus.Scheduled,ScheduledStartDateTime=newDateTimeTimeZone{DateTime="2016-03-20T18:00:00.0000000",TimeZone="UTC",},ScheduledEndDateTime=newDateTimeTimeZone{DateTime="2016-03-28T18:00:00.0000000",TimeZone="UTC",},},AdditionalData=newDictionary<string,object>{{"@odata.context","https://graph.microsoft.com/v1.0/$metadata#Me/mailboxSettings"},},};// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharpvarresult=awaitgraphClient.Me.MailboxSettings.PatchAsync(requestBody);
close