Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph
mavenMajorVersion = 1
mavenMinorVersion = 7
mavenPatchVersion = 0
mavenPatchVersion = 1
mavenArtifactSuffix =
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/microsoft/graph/core/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ private Constants() {
public static final String APPID = "app-id";
public static final String USERNAME = "user@email.com";
public static final String PASSWORD = "password";
public static final String VERSION_NAME = "1.7.0";
public static final String VERSION_NAME = "1.7.1";
}
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,14 @@ public class Device extends DirectoryObject implements IJsonBackedObject {
@Expose
public Boolean isManaged;

/**
* The Mdm App Id.
* Application identifier used to register device into MDM. Read-only. Supports $filter.
*/
@SerializedName("mdmAppId")
@Expose
public String mdmAppId;

/**
* The On Premises Last Sync Date Time.
* The last time at which the object was synced with the on-premises directory.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z' Read-only.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,14 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
@Expose
public Boolean securityEnabled;

/**
* The Security Identifier.
* Security identifier of the group, used in Windows scenarios. Returned by default.
*/
@SerializedName("securityIdentifier")
@Expose
public String securityIdentifier;

/**
* The Visibility.
* Specifies the visibility of an Office 365 group. Possible values are: Private, Public, or Hiddenmembership; blank values are treated as public. See group visibility options to learn more.Visibility can be set only when a group is created; it is not editable.Visibility is supported only for unified groups; it is not supported for security groups. Returned by default.
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/com/microsoft/graph/models/extensions/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,14 @@ public class User extends DirectoryObject implements IJsonBackedObject {
@Expose
public String jobTitle;

/**
* The Last Password Change Date Time.
* The time when this Azure AD user last changed their password. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
*/
@SerializedName("lastPasswordChangeDateTime")
@Expose
public java.util.Calendar lastPasswordChangeDateTime;

/**
* The Legal Age Group Classification.
* Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, minorWithOutParentalConsent, minorWithParentalConsent, minorNoParentalConsentRequired, notAdult and adult. Refer to the legal age group property definitions for further information.)
Expand Down