All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.graph.generated.models.identitygovernance.TopWorkflowsInsightsSummary Maven / Gradle / Ivy

There is a newer version: 6.20.0
Show newest version
package com.microsoft.graph.models.identitygovernance;

import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import com.microsoft.kiota.store.BackedModel;
import com.microsoft.kiota.store.BackingStore;
import com.microsoft.kiota.store.BackingStoreFactorySingleton;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class TopWorkflowsInsightsSummary implements AdditionalDataHolder, BackedModel, Parsable {
    /**
     * Stores model information.
     */
    @jakarta.annotation.Nonnull
    protected BackingStore backingStore;
    /**
     * Instantiates a new {@link TopWorkflowsInsightsSummary} and sets the default values.
     */
    public TopWorkflowsInsightsSummary() {
        this.backingStore = BackingStoreFactorySingleton.instance.createBackingStore();
        this.setAdditionalData(new HashMap<>());
    }
    /**
     * 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 TopWorkflowsInsightsSummary}
     */
    @jakarta.annotation.Nonnull
    public static TopWorkflowsInsightsSummary createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
        Objects.requireNonNull(parseNode);
        return new TopWorkflowsInsightsSummary();
    }
    /**
     * Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
     * @return a {@link Map}
     */
    @jakarta.annotation.Nonnull
    public Map getAdditionalData() {
        Map value = this.backingStore.get("additionalData");
        if(value == null) {
            value = new HashMap<>();
            this.setAdditionalData(value);
        }
        return value;
    }
    /**
     * Gets the backingStore property value. Stores model information.
     * @return a {@link BackingStore}
     */
    @jakarta.annotation.Nonnull
    public BackingStore getBackingStore() {
        return this.backingStore;
    }
    /**
     * Gets the failedRuns property value. Count of failed runs for workflow.
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getFailedRuns() {
        return this.backingStore.get("failedRuns");
    }
    /**
     * Gets the failedUsers property value. Count of failed users who were processed.
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getFailedUsers() {
        return this.backingStore.get("failedUsers");
    }
    /**
     * The deserialization information for the current model
     * @return a {@link Map>}
     */
    @jakarta.annotation.Nonnull
    public Map> getFieldDeserializers() {
        final HashMap> deserializerMap = new HashMap>(11);
        deserializerMap.put("failedRuns", (n) -> { this.setFailedRuns(n.getIntegerValue()); });
        deserializerMap.put("failedUsers", (n) -> { this.setFailedUsers(n.getIntegerValue()); });
        deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
        deserializerMap.put("successfulRuns", (n) -> { this.setSuccessfulRuns(n.getIntegerValue()); });
        deserializerMap.put("successfulUsers", (n) -> { this.setSuccessfulUsers(n.getIntegerValue()); });
        deserializerMap.put("totalRuns", (n) -> { this.setTotalRuns(n.getIntegerValue()); });
        deserializerMap.put("totalUsers", (n) -> { this.setTotalUsers(n.getIntegerValue()); });
        deserializerMap.put("workflowCategory", (n) -> { this.setWorkflowCategory(n.getEnumValue(LifecycleWorkflowCategory::forValue)); });
        deserializerMap.put("workflowDisplayName", (n) -> { this.setWorkflowDisplayName(n.getStringValue()); });
        deserializerMap.put("workflowId", (n) -> { this.setWorkflowId(n.getStringValue()); });
        deserializerMap.put("workflowVersion", (n) -> { this.setWorkflowVersion(n.getIntegerValue()); });
        return deserializerMap;
    }
    /**
     * Gets the @odata.type property value. The OdataType property
     * @return a {@link String}
     */
    @jakarta.annotation.Nullable
    public String getOdataType() {
        return this.backingStore.get("odataType");
    }
    /**
     * Gets the successfulRuns property value. Count of successful runs of the workflow.
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getSuccessfulRuns() {
        return this.backingStore.get("successfulRuns");
    }
    /**
     * Gets the successfulUsers property value. Count of successful users processed by the workflow.
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getSuccessfulUsers() {
        return this.backingStore.get("successfulUsers");
    }
    /**
     * Gets the totalRuns property value. Count of total runs of workflow.
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getTotalRuns() {
        return this.backingStore.get("totalRuns");
    }
    /**
     * Gets the totalUsers property value. Total number of users processed by the workflow.
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getTotalUsers() {
        return this.backingStore.get("totalUsers");
    }
    /**
     * Gets the workflowCategory property value. The workflowCategory property
     * @return a {@link LifecycleWorkflowCategory}
     */
    @jakarta.annotation.Nullable
    public LifecycleWorkflowCategory getWorkflowCategory() {
        return this.backingStore.get("workflowCategory");
    }
    /**
     * Gets the workflowDisplayName property value. The name of the workflow.
     * @return a {@link String}
     */
    @jakarta.annotation.Nullable
    public String getWorkflowDisplayName() {
        return this.backingStore.get("workflowDisplayName");
    }
    /**
     * Gets the workflowId property value. The workflow ID.
     * @return a {@link String}
     */
    @jakarta.annotation.Nullable
    public String getWorkflowId() {
        return this.backingStore.get("workflowId");
    }
    /**
     * Gets the workflowVersion property value. The version of the workflow that was a top workflow ran.
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getWorkflowVersion() {
        return this.backingStore.get("workflowVersion");
    }
    /**
     * 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);
        writer.writeIntegerValue("failedRuns", this.getFailedRuns());
        writer.writeIntegerValue("failedUsers", this.getFailedUsers());
        writer.writeStringValue("@odata.type", this.getOdataType());
        writer.writeIntegerValue("successfulRuns", this.getSuccessfulRuns());
        writer.writeIntegerValue("successfulUsers", this.getSuccessfulUsers());
        writer.writeIntegerValue("totalRuns", this.getTotalRuns());
        writer.writeIntegerValue("totalUsers", this.getTotalUsers());
        writer.writeEnumValue("workflowCategory", this.getWorkflowCategory());
        writer.writeStringValue("workflowDisplayName", this.getWorkflowDisplayName());
        writer.writeStringValue("workflowId", this.getWorkflowId());
        writer.writeIntegerValue("workflowVersion", this.getWorkflowVersion());
        writer.writeAdditionalData(this.getAdditionalData());
    }
    /**
     * Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
     * @param value Value to set for the AdditionalData property.
     */
    public void setAdditionalData(@jakarta.annotation.Nullable final Map value) {
        this.backingStore.set("additionalData", value);
    }
    /**
     * Sets the backingStore property value. Stores model information.
     * @param value Value to set for the backingStore property.
     */
    public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value) {
        Objects.requireNonNull(value);
        this.backingStore = value;
    }
    /**
     * Sets the failedRuns property value. Count of failed runs for workflow.
     * @param value Value to set for the failedRuns property.
     */
    public void setFailedRuns(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("failedRuns", value);
    }
    /**
     * Sets the failedUsers property value. Count of failed users who were processed.
     * @param value Value to set for the failedUsers property.
     */
    public void setFailedUsers(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("failedUsers", value);
    }
    /**
     * Sets the @odata.type property value. The OdataType property
     * @param value Value to set for the @odata.type property.
     */
    public void setOdataType(@jakarta.annotation.Nullable final String value) {
        this.backingStore.set("odataType", value);
    }
    /**
     * Sets the successfulRuns property value. Count of successful runs of the workflow.
     * @param value Value to set for the successfulRuns property.
     */
    public void setSuccessfulRuns(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("successfulRuns", value);
    }
    /**
     * Sets the successfulUsers property value. Count of successful users processed by the workflow.
     * @param value Value to set for the successfulUsers property.
     */
    public void setSuccessfulUsers(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("successfulUsers", value);
    }
    /**
     * Sets the totalRuns property value. Count of total runs of workflow.
     * @param value Value to set for the totalRuns property.
     */
    public void setTotalRuns(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("totalRuns", value);
    }
    /**
     * Sets the totalUsers property value. Total number of users processed by the workflow.
     * @param value Value to set for the totalUsers property.
     */
    public void setTotalUsers(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("totalUsers", value);
    }
    /**
     * Sets the workflowCategory property value. The workflowCategory property
     * @param value Value to set for the workflowCategory property.
     */
    public void setWorkflowCategory(@jakarta.annotation.Nullable final LifecycleWorkflowCategory value) {
        this.backingStore.set("workflowCategory", value);
    }
    /**
     * Sets the workflowDisplayName property value. The name of the workflow.
     * @param value Value to set for the workflowDisplayName property.
     */
    public void setWorkflowDisplayName(@jakarta.annotation.Nullable final String value) {
        this.backingStore.set("workflowDisplayName", value);
    }
    /**
     * Sets the workflowId property value. The workflow ID.
     * @param value Value to set for the workflowId property.
     */
    public void setWorkflowId(@jakarta.annotation.Nullable final String value) {
        this.backingStore.set("workflowId", value);
    }
    /**
     * Sets the workflowVersion property value. The version of the workflow that was a top workflow ran.
     * @param value Value to set for the workflowVersion property.
     */
    public void setWorkflowVersion(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("workflowVersion", value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy