Package com.microsoft.graph.models
Class AuthenticationMethodsPolicy
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AuthenticationMethodsPolicy
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AuthenticationMethodsPolicy
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Authentication Methods Policy.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Authentication Method Configurations.The Description.The Display Name.The Last Modified Date Time.The Policy Version.The Reconfirmation In Days.The Registration Enforcement. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. A description of the policy. Read-only. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The name of the policy. Read-only. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. The date and time of the last update to the policy. Read-only. -
policyVersion
@SerializedName(value="policyVersion", alternate="PolicyVersion") @Expose @Nullable public String policyVersionThe Policy Version. The version of the policy in use. Read-only. -
reconfirmationInDays
@SerializedName(value="reconfirmationInDays", alternate="ReconfirmationInDays") @Expose @Nullable public Integer reconfirmationInDaysThe Reconfirmation In Days. -
registrationEnforcement
@SerializedName(value="registrationEnforcement", alternate="RegistrationEnforcement") @Expose @Nullable public RegistrationEnforcement registrationEnforcementThe Registration Enforcement. Enforce registration at sign-in time. This property can be used to remind users to set up targeted authentication methods. -
authenticationMethodConfigurations
@SerializedName(value="authenticationMethodConfigurations", alternate="AuthenticationMethodConfigurations") @Expose @Nullable public AuthenticationMethodConfigurationCollectionPage authenticationMethodConfigurationsThe Authentication Method Configurations. Represents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy.
-
-
Constructor Details
-
AuthenticationMethodsPolicy
public AuthenticationMethodsPolicy()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-