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

com.microsoft.graph.beta.generated.models.RevokeAppleVppLicensesActionResult Maven / Gradle / Ivy

There is a newer version: 6.26.0
Show newest version
package com.microsoft.graph.beta.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;
/**
 * Revoke Apple Vpp licenses action result
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public class RevokeAppleVppLicensesActionResult extends DeviceActionResult implements Parsable {
    /**
     * Instantiates a new {@link RevokeAppleVppLicensesActionResult} and sets the default values.
     */
    public RevokeAppleVppLicensesActionResult() {
        super();
    }
    /**
     * 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 RevokeAppleVppLicensesActionResult}
     */
    @jakarta.annotation.Nonnull
    public static RevokeAppleVppLicensesActionResult createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
        Objects.requireNonNull(parseNode);
        return new RevokeAppleVppLicensesActionResult();
    }
    /**
     * Gets the failedLicensesCount property value. Total number of Apple Vpp licenses that failed to revoke
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getFailedLicensesCount() {
        return this.backingStore.get("failedLicensesCount");
    }
    /**
     * 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("failedLicensesCount", (n) -> { this.setFailedLicensesCount(n.getIntegerValue()); });
        deserializerMap.put("totalLicensesCount", (n) -> { this.setTotalLicensesCount(n.getIntegerValue()); });
        return deserializerMap;
    }
    /**
     * Gets the totalLicensesCount property value. Total number of Apple Vpp licenses associated
     * @return a {@link Integer}
     */
    @jakarta.annotation.Nullable
    public Integer getTotalLicensesCount() {
        return this.backingStore.get("totalLicensesCount");
    }
    /**
     * 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.writeIntegerValue("failedLicensesCount", this.getFailedLicensesCount());
        writer.writeIntegerValue("totalLicensesCount", this.getTotalLicensesCount());
    }
    /**
     * Sets the failedLicensesCount property value. Total number of Apple Vpp licenses that failed to revoke
     * @param value Value to set for the failedLicensesCount property.
     */
    public void setFailedLicensesCount(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("failedLicensesCount", value);
    }
    /**
     * Sets the totalLicensesCount property value. Total number of Apple Vpp licenses associated
     * @param value Value to set for the totalLicensesCount property.
     */
    public void setTotalLicensesCount(@jakarta.annotation.Nullable final Integer value) {
        this.backingStore.set("totalLicensesCount", value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy