com.microsoft.graph.generated.models.ProvisionedIdentity Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class ProvisionedIdentity extends Identity implements Parsable {
/**
* Instantiates a new {@link ProvisionedIdentity} and sets the default values.
*/
public ProvisionedIdentity() {
super();
this.setOdataType("#microsoft.graph.provisionedIdentity");
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link ProvisionedIdentity}
*/
@jakarta.annotation.Nonnull
public static ProvisionedIdentity createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new ProvisionedIdentity();
}
/**
* Gets the details property value. Details of the identity.
* @return a {@link DetailsInfo}
*/
@jakarta.annotation.Nullable
public DetailsInfo getDetails() {
return this.backingStore.get("details");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("details", (n) -> { this.setDetails(n.getObjectValue(DetailsInfo::createFromDiscriminatorValue)); });
deserializerMap.put("identityType", (n) -> { this.setIdentityType(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the identityType property value. Type of identity that has been provisioned, such as 'user' or 'group'. Supports $filter (eq, contains).
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getIdentityType() {
return this.backingStore.get("identityType");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeObjectValue("details", this.getDetails());
writer.writeStringValue("identityType", this.getIdentityType());
}
/**
* Sets the details property value. Details of the identity.
* @param value Value to set for the details property.
*/
public void setDetails(@jakarta.annotation.Nullable final DetailsInfo value) {
this.backingStore.set("details", value);
}
/**
* Sets the identityType property value. Type of identity that has been provisioned, such as 'user' or 'group'. Supports $filter (eq, contains).
* @param value Value to set for the identityType property.
*/
public void setIdentityType(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("identityType", value);
}
}