Skip to content

Commit e8f6741

Browse files
author
Andrew Omondi
committed
Merge branch 'andrueastman/richnotifications' into kiota/v1.0/pipelinebuild/131601
2 parents b485fc0 + ccb1a49 commit e8f6741

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Microsoft.Graph/Extensions/ChangeNotification.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Linq;
66
using System;
77
namespace Microsoft.Graph.Models {
8-
public class ChangeNotification : IAdditionalDataHolder, IBackedModel, IParsable {
8+
public class ChangeNotification : IEncryptedContentBearer<ChangeNotificationEncryptedContent>,IAdditionalDataHolder, IBackedModel, IParsable {
99
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary>
1010
public IDictionary<string, object> AdditionalData {
1111
get { return BackingStore?.Get<IDictionary<string, object>>("additionalData"); }

src/Microsoft.Graph/Extensions/ChangeNotificationCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
using Microsoft.Kiota.Abstractions.Serialization;
1+
using Microsoft.Kiota.Abstractions.Serialization;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;
55
using System;
66
using Microsoft.Kiota.Abstractions.Store;
77

88
namespace Microsoft.Graph.Models {
9-
public class ChangeNotificationCollection : IAdditionalDataHolder,IBackedModel, IParsable {
9+
public class ChangeNotificationCollection : ITokenValidable<ChangeNotification, ChangeNotificationEncryptedContent>, IAdditionalDataHolder,IBackedModel, IParsable {
1010
/// <summary>Stores model information.</summary>
1111
public IBackingStore BackingStore { get; private set; }
1212

src/Microsoft.Graph/Extensions/ChangeNotificationEncryptedContent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Linq;
66
using System;
77
namespace Microsoft.Graph.Models {
8-
public class ChangeNotificationEncryptedContent : IAdditionalDataHolder, IBackedModel, IParsable {
8+
public class ChangeNotificationEncryptedContent : IDecryptableContent, IAdditionalDataHolder, IBackedModel, IParsable {
99
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary>
1010
public IDictionary<string, object> AdditionalData {
1111
get { return BackingStore?.Get<IDictionary<string, object>>("additionalData"); }

0 commit comments

Comments
 (0)