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

odata.msgraph.client.entity.DeviceComplianceUserOverview Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package odata.msgraph.client.entity;

import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.github.davidmoten.odata.client.ClientException;
import com.github.davidmoten.odata.client.NameValue;
import com.github.davidmoten.odata.client.ODataEntityType;
import com.github.davidmoten.odata.client.RequestOptions;
import com.github.davidmoten.odata.client.UnmappedFields;
import com.github.davidmoten.odata.client.Util;
import com.github.davidmoten.odata.client.annotation.Property;
import com.github.davidmoten.odata.client.internal.ChangedFields;
import com.github.davidmoten.odata.client.internal.RequestHelper;
import com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl;

import java.lang.Integer;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.lang.StringBuilder;
import java.time.OffsetDateTime;
import java.util.Optional;

@JsonPropertyOrder({
    "@odata.type", 
    "configurationVersion", 
    "errorCount", 
    "failedCount", 
    "lastUpdateDateTime", 
    "notApplicableCount", 
    "pendingCount", 
    "successCount"})
@JsonInclude(Include.NON_NULL)
public class DeviceComplianceUserOverview extends Entity implements ODataEntityType {

    @Override
    public String odataTypeName() {
        return "microsoft.graph.deviceComplianceUserOverview";
    }

    @JsonProperty("configurationVersion")
    protected Integer configurationVersion;

    @JsonProperty("errorCount")
    protected Integer errorCount;

    @JsonProperty("failedCount")
    protected Integer failedCount;

    @JsonProperty("lastUpdateDateTime")
    protected OffsetDateTime lastUpdateDateTime;

    @JsonProperty("notApplicableCount")
    protected Integer notApplicableCount;

    @JsonProperty("pendingCount")
    protected Integer pendingCount;

    @JsonProperty("successCount")
    protected Integer successCount;

    protected DeviceComplianceUserOverview() {
        super();
    }

    /**
     * Returns a builder which is used to create a new
     * instance of this class (given that this class is immutable).
     *
     * @return a new Builder for this class
     */
    // Suffix used on builder factory method to differentiate the method
    // from static builder methods on superclasses
    public static Builder builderDeviceComplianceUserOverview() {
        return new Builder();
    }

    public static final class Builder {
        private String id;
        private Integer configurationVersion;
        private Integer errorCount;
        private Integer failedCount;
        private OffsetDateTime lastUpdateDateTime;
        private Integer notApplicableCount;
        private Integer pendingCount;
        private Integer successCount;
        private ChangedFields changedFields = ChangedFields.EMPTY;

        Builder() {
            // prevent instantiation
        }

        public Builder id(String id) {
            this.id = id;
            this.changedFields = changedFields.add("id");
            return this;
        }

        /**
         * “Version of the policy for that overview”
         * 
         * @param configurationVersion
         *            value of {@code configurationVersion} property (as defined in service metadata)
         * @return {@code this} (for method chaining)
         */
        public Builder configurationVersion(Integer configurationVersion) {
            this.configurationVersion = configurationVersion;
            this.changedFields = changedFields.add("configurationVersion");
            return this;
        }

        /**
         * “Number of error Users”
         * 
         * @param errorCount
         *            value of {@code errorCount} property (as defined in service metadata)
         * @return {@code this} (for method chaining)
         */
        public Builder errorCount(Integer errorCount) {
            this.errorCount = errorCount;
            this.changedFields = changedFields.add("errorCount");
            return this;
        }

        /**
         * “Number of failed Users”
         * 
         * @param failedCount
         *            value of {@code failedCount} property (as defined in service metadata)
         * @return {@code this} (for method chaining)
         */
        public Builder failedCount(Integer failedCount) {
            this.failedCount = failedCount;
            this.changedFields = changedFields.add("failedCount");
            return this;
        }

        /**
         * “Last update time”
         * 
         * @param lastUpdateDateTime
         *            value of {@code lastUpdateDateTime} property (as defined in service metadata)
         * @return {@code this} (for method chaining)
         */
        public Builder lastUpdateDateTime(OffsetDateTime lastUpdateDateTime) {
            this.lastUpdateDateTime = lastUpdateDateTime;
            this.changedFields = changedFields.add("lastUpdateDateTime");
            return this;
        }

        /**
         * “Number of not applicable users”
         * 
         * @param notApplicableCount
         *            value of {@code notApplicableCount} property (as defined in service metadata)
         * @return {@code this} (for method chaining)
         */
        public Builder notApplicableCount(Integer notApplicableCount) {
            this.notApplicableCount = notApplicableCount;
            this.changedFields = changedFields.add("notApplicableCount");
            return this;
        }

        /**
         * “Number of pending Users”
         * 
         * @param pendingCount
         *            value of {@code pendingCount} property (as defined in service metadata)
         * @return {@code this} (for method chaining)
         */
        public Builder pendingCount(Integer pendingCount) {
            this.pendingCount = pendingCount;
            this.changedFields = changedFields.add("pendingCount");
            return this;
        }

        /**
         * “Number of succeeded Users”
         * 
         * @param successCount
         *            value of {@code successCount} property (as defined in service metadata)
         * @return {@code this} (for method chaining)
         */
        public Builder successCount(Integer successCount) {
            this.successCount = successCount;
            this.changedFields = changedFields.add("successCount");
            return this;
        }

        public DeviceComplianceUserOverview build() {
            DeviceComplianceUserOverview _x = new DeviceComplianceUserOverview();
            _x.contextPath = null;
            _x.changedFields = changedFields;
            _x.unmappedFields = new UnmappedFieldsImpl();
            _x.odataType = "microsoft.graph.deviceComplianceUserOverview";
            _x.id = id;
            _x.configurationVersion = configurationVersion;
            _x.errorCount = errorCount;
            _x.failedCount = failedCount;
            _x.lastUpdateDateTime = lastUpdateDateTime;
            _x.notApplicableCount = notApplicableCount;
            _x.pendingCount = pendingCount;
            _x.successCount = successCount;
            return _x;
        }
    }

    @Override
    @JsonIgnore
    public ChangedFields getChangedFields() {
        return changedFields;
    }

    @Override
    public void postInject(boolean addKeysToContextPath) {
        if (addKeysToContextPath && id != null) {
            contextPath = contextPath.clearQueries().addKeys(new NameValue(id, String.class));
        }
    }

    /**
     * “Version of the policy for that overview”
     * 
     * @return property configurationVersion
     */
    @Property(name="configurationVersion")
    @JsonIgnore
    public Optional getConfigurationVersion() {
        return Optional.ofNullable(configurationVersion);
    }

    /**
     * Returns an immutable copy of {@code this} with just the {@code
     * configurationVersion} field changed. Field description below. The field name is
     * also added to an internal map of changed fields in the returned object so that
     * when {@code this.patch()} is called (if available)on the returned object only
     * the changed fields are submitted.
     * 

* “Version of the policy for that overview” * * @param configurationVersion * new value of {@code configurationVersion} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code configurationVersion} field changed */ public DeviceComplianceUserOverview withConfigurationVersion(Integer configurationVersion) { DeviceComplianceUserOverview _x = _copy(); _x.changedFields = changedFields.add("configurationVersion"); _x.odataType = Util.nvl(odataType, "microsoft.graph.deviceComplianceUserOverview"); _x.configurationVersion = configurationVersion; return _x; } /** * “Number of error Users” * * @return property errorCount */ @Property(name="errorCount") @JsonIgnore public Optional getErrorCount() { return Optional.ofNullable(errorCount); } /** * Returns an immutable copy of {@code this} with just the {@code errorCount} field * changed. Field description below. The field name is also added to an internal * map of changed fields in the returned object so that when {@code this.patch()} * is called (if available)on the returned object only the changed fields are * submitted. *

* “Number of error Users” * * @param errorCount * new value of {@code errorCount} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code errorCount} field changed */ public DeviceComplianceUserOverview withErrorCount(Integer errorCount) { DeviceComplianceUserOverview _x = _copy(); _x.changedFields = changedFields.add("errorCount"); _x.odataType = Util.nvl(odataType, "microsoft.graph.deviceComplianceUserOverview"); _x.errorCount = errorCount; return _x; } /** * “Number of failed Users” * * @return property failedCount */ @Property(name="failedCount") @JsonIgnore public Optional getFailedCount() { return Optional.ofNullable(failedCount); } /** * Returns an immutable copy of {@code this} with just the {@code failedCount} * field changed. Field description below. The field name is also added to an * internal map of changed fields in the returned object so that when {@code this. * patch()} is called (if available)on the returned object only the changed fields * are submitted. *

* “Number of failed Users” * * @param failedCount * new value of {@code failedCount} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code failedCount} field changed */ public DeviceComplianceUserOverview withFailedCount(Integer failedCount) { DeviceComplianceUserOverview _x = _copy(); _x.changedFields = changedFields.add("failedCount"); _x.odataType = Util.nvl(odataType, "microsoft.graph.deviceComplianceUserOverview"); _x.failedCount = failedCount; return _x; } /** * “Last update time” * * @return property lastUpdateDateTime */ @Property(name="lastUpdateDateTime") @JsonIgnore public Optional getLastUpdateDateTime() { return Optional.ofNullable(lastUpdateDateTime); } /** * Returns an immutable copy of {@code this} with just the {@code * lastUpdateDateTime} field changed. Field description below. The field name is * also added to an internal map of changed fields in the returned object so that * when {@code this.patch()} is called (if available)on the returned object only * the changed fields are submitted. *

* “Last update time” * * @param lastUpdateDateTime * new value of {@code lastUpdateDateTime} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code lastUpdateDateTime} field changed */ public DeviceComplianceUserOverview withLastUpdateDateTime(OffsetDateTime lastUpdateDateTime) { DeviceComplianceUserOverview _x = _copy(); _x.changedFields = changedFields.add("lastUpdateDateTime"); _x.odataType = Util.nvl(odataType, "microsoft.graph.deviceComplianceUserOverview"); _x.lastUpdateDateTime = lastUpdateDateTime; return _x; } /** * “Number of not applicable users” * * @return property notApplicableCount */ @Property(name="notApplicableCount") @JsonIgnore public Optional getNotApplicableCount() { return Optional.ofNullable(notApplicableCount); } /** * Returns an immutable copy of {@code this} with just the {@code * notApplicableCount} field changed. Field description below. The field name is * also added to an internal map of changed fields in the returned object so that * when {@code this.patch()} is called (if available)on the returned object only * the changed fields are submitted. *

* “Number of not applicable users” * * @param notApplicableCount * new value of {@code notApplicableCount} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code notApplicableCount} field changed */ public DeviceComplianceUserOverview withNotApplicableCount(Integer notApplicableCount) { DeviceComplianceUserOverview _x = _copy(); _x.changedFields = changedFields.add("notApplicableCount"); _x.odataType = Util.nvl(odataType, "microsoft.graph.deviceComplianceUserOverview"); _x.notApplicableCount = notApplicableCount; return _x; } /** * “Number of pending Users” * * @return property pendingCount */ @Property(name="pendingCount") @JsonIgnore public Optional getPendingCount() { return Optional.ofNullable(pendingCount); } /** * Returns an immutable copy of {@code this} with just the {@code pendingCount} * field changed. Field description below. The field name is also added to an * internal map of changed fields in the returned object so that when {@code this. * patch()} is called (if available)on the returned object only the changed fields * are submitted. *

* “Number of pending Users” * * @param pendingCount * new value of {@code pendingCount} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code pendingCount} field changed */ public DeviceComplianceUserOverview withPendingCount(Integer pendingCount) { DeviceComplianceUserOverview _x = _copy(); _x.changedFields = changedFields.add("pendingCount"); _x.odataType = Util.nvl(odataType, "microsoft.graph.deviceComplianceUserOverview"); _x.pendingCount = pendingCount; return _x; } /** * “Number of succeeded Users” * * @return property successCount */ @Property(name="successCount") @JsonIgnore public Optional getSuccessCount() { return Optional.ofNullable(successCount); } /** * Returns an immutable copy of {@code this} with just the {@code successCount} * field changed. Field description below. The field name is also added to an * internal map of changed fields in the returned object so that when {@code this. * patch()} is called (if available)on the returned object only the changed fields * are submitted. *

* “Number of succeeded Users” * * @param successCount * new value of {@code successCount} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code successCount} field changed */ public DeviceComplianceUserOverview withSuccessCount(Integer successCount) { DeviceComplianceUserOverview _x = _copy(); _x.changedFields = changedFields.add("successCount"); _x.odataType = Util.nvl(odataType, "microsoft.graph.deviceComplianceUserOverview"); _x.successCount = successCount; return _x; } public DeviceComplianceUserOverview withUnmappedField(String name, Object value) { DeviceComplianceUserOverview _x = _copy(); _x.setUnmappedField(name, value); return _x; } @JsonAnySetter private void setUnmappedField(String name, Object value) { if (unmappedFields == null) { unmappedFields = new UnmappedFieldsImpl(); } unmappedFields.put(name, value); } @JsonAnyGetter private UnmappedFieldsImpl unmappedFields() { return unmappedFields == null ? UnmappedFieldsImpl.EMPTY : unmappedFields; } @Override public UnmappedFields getUnmappedFields() { return unmappedFields(); } /** * Submits only changed fields for update and returns an * immutable copy of {@code this} with changed fields reset. * * @return a copy of {@code this} with changed fields reset * @throws ClientException if HTTP response is not as expected */ public DeviceComplianceUserOverview patch() { RequestHelper.patch(this, contextPath, RequestOptions.EMPTY); DeviceComplianceUserOverview _x = _copy(); _x.changedFields = null; return _x; } /** * Submits all fields for update and returns an immutable copy of {@code this} * with changed fields reset (they were ignored anyway). * * @return a copy of {@code this} with changed fields reset * @throws ClientException if HTTP response is not as expected */ public DeviceComplianceUserOverview put() { RequestHelper.put(this, contextPath, RequestOptions.EMPTY); DeviceComplianceUserOverview _x = _copy(); _x.changedFields = null; return _x; } private DeviceComplianceUserOverview _copy() { DeviceComplianceUserOverview _x = new DeviceComplianceUserOverview(); _x.contextPath = contextPath; _x.changedFields = changedFields; _x.unmappedFields = unmappedFields.copy(); _x.odataType = odataType; _x.id = id; _x.configurationVersion = configurationVersion; _x.errorCount = errorCount; _x.failedCount = failedCount; _x.lastUpdateDateTime = lastUpdateDateTime; _x.notApplicableCount = notApplicableCount; _x.pendingCount = pendingCount; _x.successCount = successCount; return _x; } @Override public String toString() { StringBuilder b = new StringBuilder(); b.append("DeviceComplianceUserOverview["); b.append("id="); b.append(this.id); b.append(", "); b.append("configurationVersion="); b.append(this.configurationVersion); b.append(", "); b.append("errorCount="); b.append(this.errorCount); b.append(", "); b.append("failedCount="); b.append(this.failedCount); b.append(", "); b.append("lastUpdateDateTime="); b.append(this.lastUpdateDateTime); b.append(", "); b.append("notApplicableCount="); b.append(this.notApplicableCount); b.append(", "); b.append("pendingCount="); b.append(this.pendingCount); b.append(", "); b.append("successCount="); b.append(this.successCount); b.append("]"); b.append(",unmappedFields="); b.append(unmappedFields); b.append(",odataType="); b.append(odataType); return b.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy