Skip to content

Commit d87449d

Browse files
author
Andrew Omondi
committed
chore: add comments to models
1 parent ae1447c commit d87449d

File tree

7 files changed

+22
-1
lines changed

7 files changed

+22
-1
lines changed

src/main/java/com/microsoft/graph/models/ChangeNotification.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
import java.util.Map;
1414
import java.util.Objects;
1515

16-
16+
/**
17+
* The {@link ChangeNotification} model with information on the change notification.
18+
*/
1719
public class ChangeNotification implements EncryptedContentBearer<ChangeNotificationEncryptedContent>, AdditionalDataHolder, BackedModel, Parsable {
1820
/**
1921
* Stores model information.

src/main/java/com/microsoft/graph/models/ChangeNotificationCollection.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
import java.util.Map;
1313
import java.util.Objects;
1414

15+
/**
16+
* The {@link ChangeNotificationCollection} model.
17+
*/
1518
public class ChangeNotificationCollection implements TokenValidable<ChangeNotificationEncryptedContent, ChangeNotification>, AdditionalDataHolder, BackedModel, Parsable {
1619
/**
1720
* Stores model information.

src/main/java/com/microsoft/graph/models/ChangeNotificationCollectionResponse.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
import java.util.Map;
88
import java.util.Objects;
99

10+
11+
/**
12+
* The {@link ChangeNotificationCollectionResponse} model for the response.
13+
*/
1014
public class ChangeNotificationCollectionResponse extends BaseCollectionPaginationCountResponse implements Parsable {
1115
/**
1216
* Instantiates a new {@link ChangeNotificationCollectionResponse} and sets the default values.

src/main/java/com/microsoft/graph/models/ChangeNotificationEncryptedContent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
import java.util.Map;
1313
import java.util.Objects;
1414

15+
/**
16+
* The {@link ChangeNotificationEncryptedContent} model for the encrypted response.
17+
*/
1518
public class ChangeNotificationEncryptedContent implements DecryptableContent, AdditionalDataHolder, BackedModel, Parsable {
1619
/**
1720
* Stores model information.

src/main/java/com/microsoft/graph/models/ChangeType.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import com.microsoft.kiota.serialization.ValuedEnum;
44
import java.util.Objects;
55

6+
/**
7+
* The {@link ChangeType} enum for type of change.
8+
*/
69
public enum ChangeType implements ValuedEnum {
710
Created("created"),
811
Updated("updated"),

src/main/java/com/microsoft/graph/models/LifecycleEventType.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import com.microsoft.kiota.serialization.ValuedEnum;
44
import java.util.Objects;
55

6+
/**
7+
* The {@link LifecycleEventType} enum for event status in the lifecycle.
8+
*/
69
public enum LifecycleEventType implements ValuedEnum {
710
Missed("missed"),
811
SubscriptionRemoved("subscriptionRemoved"),

src/main/java/com/microsoft/graph/models/ResourceData.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
import java.util.Map;
1212
import java.util.Objects;
1313

14+
/**
15+
* The {@link ResourceData} model for data of the subscribed resource.
16+
*/
1417
public class ResourceData implements AdditionalDataHolder, BackedModel, Parsable {
1518
/**
1619
* Stores model information.

0 commit comments

Comments
 (0)