1111import com .microsoft .graph .models .extensions .EmailAuthenticationMethod ;
1212import com .microsoft .graph .models .extensions .Fido2AuthenticationMethod ;
1313import com .microsoft .graph .models .extensions .AuthenticationMethod ;
14+ import com .microsoft .graph .models .extensions .MicrosoftAuthenticatorAuthenticationMethod ;
1415import com .microsoft .graph .models .extensions .LongRunningOperation ;
1516import com .microsoft .graph .models .extensions .PasswordlessMicrosoftAuthenticatorAuthenticationMethod ;
1617import com .microsoft .graph .models .extensions .PasswordAuthenticationMethod ;
1718import com .microsoft .graph .models .extensions .PhoneAuthenticationMethod ;
19+ import com .microsoft .graph .models .extensions .WindowsHelloForBusinessAuthenticationMethod ;
1820import com .microsoft .graph .models .extensions .Entity ;
1921import com .microsoft .graph .requests .extensions .EmailAuthenticationMethodCollectionPage ;
2022import com .microsoft .graph .requests .extensions .Fido2AuthenticationMethodCollectionPage ;
2123import com .microsoft .graph .requests .extensions .AuthenticationMethodCollectionPage ;
24+ import com .microsoft .graph .requests .extensions .MicrosoftAuthenticatorAuthenticationMethodCollectionPage ;
2225import com .microsoft .graph .requests .extensions .LongRunningOperationCollectionPage ;
2326import com .microsoft .graph .requests .extensions .PasswordlessMicrosoftAuthenticatorAuthenticationMethodCollectionPage ;
2427import com .microsoft .graph .requests .extensions .PasswordAuthenticationMethodCollectionPage ;
2528import com .microsoft .graph .requests .extensions .PhoneAuthenticationMethodCollectionPage ;
29+ import com .microsoft .graph .requests .extensions .WindowsHelloForBusinessAuthenticationMethodCollectionPage ;
2630
2731
2832import com .google .gson .JsonObject ;
@@ -61,6 +65,14 @@ public class Authentication extends Entity implements IJsonBackedObject {
6165 @ Expose
6266 public AuthenticationMethodCollectionPage methods ;
6367
68+ /**
69+ * The Microsoft Authenticator Methods.
70+ *
71+ */
72+ @ SerializedName (value = "microsoftAuthenticatorMethods" , alternate = {"MicrosoftAuthenticatorMethods" })
73+ @ Expose
74+ public MicrosoftAuthenticatorAuthenticationMethodCollectionPage microsoftAuthenticatorMethods ;
75+
6476 /**
6577 * The Operations.
6678 *
@@ -93,6 +105,14 @@ public class Authentication extends Entity implements IJsonBackedObject {
93105 @ Expose
94106 public PhoneAuthenticationMethodCollectionPage phoneMethods ;
95107
108+ /**
109+ * The Windows Hello For Business Methods.
110+ *
111+ */
112+ @ SerializedName (value = "windowsHelloForBusinessMethods" , alternate = {"WindowsHelloForBusinessMethods" })
113+ @ Expose
114+ public WindowsHelloForBusinessAuthenticationMethodCollectionPage windowsHelloForBusinessMethods ;
115+
96116
97117 /**
98118 * The raw representation of this class
@@ -145,6 +165,10 @@ public void setRawObject(final ISerializer serializer, final JsonObject json) {
145165 methods = serializer .deserializeObject (json .get ("methods" ).toString (), AuthenticationMethodCollectionPage .class );
146166 }
147167
168+ if (json .has ("microsoftAuthenticatorMethods" )) {
169+ microsoftAuthenticatorMethods = serializer .deserializeObject (json .get ("microsoftAuthenticatorMethods" ).toString (), MicrosoftAuthenticatorAuthenticationMethodCollectionPage .class );
170+ }
171+
148172 if (json .has ("operations" )) {
149173 operations = serializer .deserializeObject (json .get ("operations" ).toString (), LongRunningOperationCollectionPage .class );
150174 }
@@ -160,5 +184,9 @@ public void setRawObject(final ISerializer serializer, final JsonObject json) {
160184 if (json .has ("phoneMethods" )) {
161185 phoneMethods = serializer .deserializeObject (json .get ("phoneMethods" ).toString (), PhoneAuthenticationMethodCollectionPage .class );
162186 }
187+
188+ if (json .has ("windowsHelloForBusinessMethods" )) {
189+ windowsHelloForBusinessMethods = serializer .deserializeObject (json .get ("windowsHelloForBusinessMethods" ).toString (), WindowsHelloForBusinessAuthenticationMethodCollectionPage .class );
190+ }
163191 }
164192}
0 commit comments