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

odata.msgraph.client.complex.IosVppAppAssignmentSettings Maven / Gradle / Ivy

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

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.ODataType;
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.UnmappedFieldsImpl;

import java.lang.Boolean;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.lang.StringBuilder;
import java.util.Optional;


/**
 * “Contains properties used to assign an iOS VPP mobile app to a group.”
 */@JsonPropertyOrder({
    "@odata.type", 
    "useDeviceLicensing", 
    "vpnConfigurationId"})
@JsonInclude(Include.NON_NULL)
public class IosVppAppAssignmentSettings extends MobileAppAssignmentSettings implements ODataType {

    @JsonProperty("useDeviceLicensing")
    protected Boolean useDeviceLicensing;

    @JsonProperty("vpnConfigurationId")
    protected String vpnConfigurationId;

    protected IosVppAppAssignmentSettings() {
        super();
    }

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

    /**
     * “Whether or not to use device licensing.”
     * 
     * @return property useDeviceLicensing
     */
    @Property(name="useDeviceLicensing")
    @JsonIgnore
    public Optional getUseDeviceLicensing() {
        return Optional.ofNullable(useDeviceLicensing);
    }

    /**
     * Returns an immutable copy of {@code this} with just the {@code
     * useDeviceLicensing} 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.
     * 

* “Whether or not to use device licensing.” * * @param useDeviceLicensing * new value of {@code useDeviceLicensing} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code useDeviceLicensing} field changed */ public IosVppAppAssignmentSettings withUseDeviceLicensing(Boolean useDeviceLicensing) { IosVppAppAssignmentSettings _x = _copy(); _x.odataType = Util.nvl(odataType, "microsoft.graph.iosVppAppAssignmentSettings"); _x.useDeviceLicensing = useDeviceLicensing; return _x; } /** * “The VPN Configuration Id to apply for this app.” * * @return property vpnConfigurationId */ @Property(name="vpnConfigurationId") @JsonIgnore public Optional getVpnConfigurationId() { return Optional.ofNullable(vpnConfigurationId); } /** * Returns an immutable copy of {@code this} with just the {@code * vpnConfigurationId} 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. *

* “The VPN Configuration Id to apply for this app.” * * @param vpnConfigurationId * new value of {@code vpnConfigurationId} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code vpnConfigurationId} field changed */ public IosVppAppAssignmentSettings withVpnConfigurationId(String vpnConfigurationId) { IosVppAppAssignmentSettings _x = _copy(); _x.odataType = Util.nvl(odataType, "microsoft.graph.iosVppAppAssignmentSettings"); _x.vpnConfigurationId = vpnConfigurationId; return _x; } public IosVppAppAssignmentSettings withUnmappedField(String name, Object value) { IosVppAppAssignmentSettings _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(); } @Override public void postInject(boolean addKeysToContextPath) { // do nothing; } /** * 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 builderIosVppAppAssignmentSettings() { return new Builder(); } public static final class Builder { private Boolean useDeviceLicensing; private String vpnConfigurationId; private ChangedFields changedFields = ChangedFields.EMPTY; Builder() { // prevent instantiation } /** * “Whether or not to use device licensing.” * * @param useDeviceLicensing * value of {@code useDeviceLicensing} property (as defined in service metadata) * @return {@code this} (for method chaining) */ public Builder useDeviceLicensing(Boolean useDeviceLicensing) { this.useDeviceLicensing = useDeviceLicensing; this.changedFields = changedFields.add("useDeviceLicensing"); return this; } /** * “The VPN Configuration Id to apply for this app.” * * @param vpnConfigurationId * value of {@code vpnConfigurationId} property (as defined in service metadata) * @return {@code this} (for method chaining) */ public Builder vpnConfigurationId(String vpnConfigurationId) { this.vpnConfigurationId = vpnConfigurationId; this.changedFields = changedFields.add("vpnConfigurationId"); return this; } public IosVppAppAssignmentSettings build() { IosVppAppAssignmentSettings _x = new IosVppAppAssignmentSettings(); _x.contextPath = null; _x.unmappedFields = new UnmappedFieldsImpl(); _x.odataType = "microsoft.graph.iosVppAppAssignmentSettings"; _x.useDeviceLicensing = useDeviceLicensing; _x.vpnConfigurationId = vpnConfigurationId; return _x; } } private IosVppAppAssignmentSettings _copy() { IosVppAppAssignmentSettings _x = new IosVppAppAssignmentSettings(); _x.contextPath = contextPath; _x.unmappedFields = unmappedFields.copy(); _x.odataType = odataType; _x.useDeviceLicensing = useDeviceLicensing; _x.vpnConfigurationId = vpnConfigurationId; return _x; } @Override public String toString() { StringBuilder b = new StringBuilder(); b.append("IosVppAppAssignmentSettings["); b.append("useDeviceLicensing="); b.append(this.useDeviceLicensing); b.append(", "); b.append("vpnConfigurationId="); b.append(this.vpnConfigurationId); b.append("]"); b.append(",unmappedFields="); b.append(unmappedFields); b.append(",odataType="); b.append(odataType); return b.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy