You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/microsoft/graph/callrecords/models/CallRecord.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
105
105
106
106
/**
107
107
* The Version.
108
-
* Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version.
108
+
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
Copy file name to clipboardExpand all lines: src/main/java/com/microsoft/graph/models/AdministrativeUnit.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ public class AdministrativeUnit extends DirectoryObject implements IJsonBackedOb
51
51
52
52
/**
53
53
* The Visibility.
54
-
* Controls whether the adminstrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.
54
+
* Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.
Copy file name to clipboardExpand all lines: src/main/java/com/microsoft/graph/models/AndroidManagedAppProtection.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ public class AndroidManagedAppProtection extends TargetedManagedAppProtection im
31
31
32
32
/**
33
33
* The Custom Browser Display Name.
34
-
* Friendly name of the preferred custom browser to open weblink on Android.
34
+
* Friendly name of the preferred custom browser to open weblink on Android. When this property is configured, ManagedBrowserToOpenLinksRequired should be true.
@@ -40,7 +40,7 @@ public class AndroidManagedAppProtection extends TargetedManagedAppProtection im
40
40
41
41
/**
42
42
* The Custom Browser Package Id.
43
-
* Unique identifier of a custom browser to open weblink on Android.
43
+
* Unique identifier of the preferred custom browser to open weblink on Android. When this property is configured, ManagedBrowserToOpenLinksRequired should be true.
@@ -121,7 +121,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
121
121
122
122
/**
123
123
* The Group Membership Claims.
124
-
* Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values:NoneSecurityGroup: For security groups and Azure AD rolesAll: This gets all of the security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of.
124
+
* Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following valid string values:NoneSecurityGroup: For security groups and Azure AD rolesAll: This gets all of the security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of.
@@ -130,7 +130,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
130
130
131
131
/**
132
132
* The Identifier Uris.
133
-
* The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable.
133
+
* The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable.
@@ -139,7 +139,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
139
139
140
140
/**
141
141
* The Info.
142
-
* Basic profile information of the application, such as it's marketing, support, terms of service, and privacy statement URLs. The terms of service and privacy statement are surfaced to users through the user consent experience. For more information, see How to: Add Terms of service and privacy statement for registered Azure AD apps.
142
+
* Basic profile information of the application such as app's marketing, support, terms of service and privacy statement URLs. The terms of service and privacy statement are surfaced to users through the user consent experience. For more info, see How to: Add Terms of service and privacy statement for registered Azure AD apps.
@@ -157,7 +157,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
157
157
158
158
/**
159
159
* The Is Fallback Public Client.
160
-
* Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property.
160
+
* Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where it is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property.
@@ -247,7 +247,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
247
247
248
248
/**
249
249
* The Sign In Audience.
250
-
* Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.
250
+
* Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (singletenant)AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.For authenticating users with Azure AD B2C user flows, use AzureADandPersonalMicrosoftAccount. This value allows for the widest set of user identities including local accounts and user identities from Microsoft, Facebook, Google, Twitter, or any OpenID Connect provider.
Copy file name to clipboardExpand all lines: src/main/java/com/microsoft/graph/models/AttendeeBase.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ public class AttendeeBase extends Recipient implements IJsonBackedObject {
28
28
29
29
/**
30
30
* The Type.
31
-
* The type of attendee. Possible values are: required, optional, resource. Currently if the attendee is a person, findMeetingTimes always considers the person is of the Required type.
31
+
* The type of attendee. The possible values are: required, optional, resource. Currently if the attendee is a person, findMeetingTimes always considers the person is of the Required type.
Copy file name to clipboardExpand all lines: src/main/java/com/microsoft/graph/models/AutomaticRepliesSetting.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() {
42
42
43
43
/**
44
44
* The External Audience.
45
-
* The set of audience external to the signed-in user's organization who will receive the ExternalReplyMessage, if Status is AlwaysEnabled or Scheduled. Possible values are: none, contactsOnly, all.
45
+
* The set of audience external to the signed-in user's organization who will receive the ExternalReplyMessage, if Status is AlwaysEnabled or Scheduled. The possible values are: none, contactsOnly, all.
Copy file name to clipboardExpand all lines: src/main/java/com/microsoft/graph/models/Calendar.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ public class Calendar extends Entity implements IJsonBackedObject {
48
48
49
49
/**
50
50
* The Can Edit.
51
-
* True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.
51
+
* True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access.
@@ -66,7 +66,7 @@ public class Calendar extends Entity implements IJsonBackedObject {
66
66
67
67
/**
68
68
* The Can View Private Items.
69
-
* True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.
69
+
* True if the user can read calendar items that have been marked private, false otherwise.
@@ -102,7 +102,7 @@ public class Calendar extends Entity implements IJsonBackedObject {
102
102
103
103
/**
104
104
* The Hex Color.
105
-
* The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.
105
+
* The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty. Read-only.
@@ -147,7 +147,7 @@ public class Calendar extends Entity implements IJsonBackedObject {
147
147
148
148
/**
149
149
* The Owner.
150
-
* If set, this represents the user who created or added the calendar. For a calendar that the user created or added, the owner property is set to the user. For a calendar shared with the user, the owner property is set to the person who shared that calendar with the user. Read-only.
150
+
* If set, this represents the user who created or added the calendar. For a calendar that the user created or added, the owner property is set to the user. For a calendar shared with the user, the owner property is set to the person who shared that calendar with the user.
0 commit comments