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

odata.msgraph.client.complex.IosStoreAppAssignmentSettings 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 Store mobile app to a group.”
 */@JsonPropertyOrder({
    "@odata.type", 
    "isRemovable", 
    "uninstallOnDeviceRemoval", 
    "vpnConfigurationId"})
@JsonInclude(Include.NON_NULL)
public class IosStoreAppAssignmentSettings extends MobileAppAssignmentSettings implements ODataType {

    @JsonProperty("isRemovable")
    protected Boolean isRemovable;

    @JsonProperty("uninstallOnDeviceRemoval")
    protected Boolean uninstallOnDeviceRemoval;

    @JsonProperty("vpnConfigurationId")
    protected String vpnConfigurationId;

    protected IosStoreAppAssignmentSettings() {
        super();
    }

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

    /**
     * “When TRUE, indicates that the app can be uninstalled by the user. When FALSE,
     * indicates that the app cannot be uninstalled by the user. By default, this
     * property is set to null which internally is treated as TRUE.”
     * 
     * @return property isRemovable
     */
    @Property(name="isRemovable")
    @JsonIgnore
    public Optional getIsRemovable() {
        return Optional.ofNullable(isRemovable);
    }

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

* “When TRUE, indicates that the app can be uninstalled by the user. When FALSE, * indicates that the app cannot be uninstalled by the user. By default, this * property is set to null which internally is treated as TRUE.” * * @param isRemovable * new value of {@code isRemovable} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code isRemovable} field changed */ public IosStoreAppAssignmentSettings withIsRemovable(Boolean isRemovable) { IosStoreAppAssignmentSettings _x = _copy(); _x.odataType = Util.nvl(odataType, "microsoft.graph.iosStoreAppAssignmentSettings"); _x.isRemovable = isRemovable; return _x; } /** * “When TRUE, indicates that the app should be uninstalled when the device is * removed from Intune. When FALSE, indicates that the app will not be uninstalled * when the device is removed from Intune. By default, property is set to null * which internally is treated as TRUE.” * * @return property uninstallOnDeviceRemoval */ @Property(name="uninstallOnDeviceRemoval") @JsonIgnore public Optional getUninstallOnDeviceRemoval() { return Optional.ofNullable(uninstallOnDeviceRemoval); } /** * Returns an immutable copy of {@code this} with just the {@code * uninstallOnDeviceRemoval} 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. *

* “When TRUE, indicates that the app should be uninstalled when the device is * removed from Intune. When FALSE, indicates that the app will not be uninstalled * when the device is removed from Intune. By default, property is set to null * which internally is treated as TRUE.” * * @param uninstallOnDeviceRemoval * new value of {@code uninstallOnDeviceRemoval} field (as defined in service metadata) * @return immutable copy of {@code this} with just the {@code uninstallOnDeviceRemoval} field changed */ public IosStoreAppAssignmentSettings withUninstallOnDeviceRemoval(Boolean uninstallOnDeviceRemoval) { IosStoreAppAssignmentSettings _x = _copy(); _x.odataType = Util.nvl(odataType, "microsoft.graph.iosStoreAppAssignmentSettings"); _x.uninstallOnDeviceRemoval = uninstallOnDeviceRemoval; return _x; } /** * “This is the unique identifier (Id) of the VPN Configuration to apply to the 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. *

* “This is the unique identifier (Id) of the VPN Configuration to apply to the 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 IosStoreAppAssignmentSettings withVpnConfigurationId(String vpnConfigurationId) { IosStoreAppAssignmentSettings _x = _copy(); _x.odataType = Util.nvl(odataType, "microsoft.graph.iosStoreAppAssignmentSettings"); _x.vpnConfigurationId = vpnConfigurationId; return _x; } public IosStoreAppAssignmentSettings withUnmappedField(String name, Object value) { IosStoreAppAssignmentSettings _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 builderIosStoreAppAssignmentSettings() { return new Builder(); } public static final class Builder { private Boolean isRemovable; private Boolean uninstallOnDeviceRemoval; private String vpnConfigurationId; private ChangedFields changedFields = ChangedFields.EMPTY; Builder() { // prevent instantiation } /** * “When TRUE, indicates that the app can be uninstalled by the user. When FALSE, * indicates that the app cannot be uninstalled by the user. By default, this * property is set to null which internally is treated as TRUE.” * * @param isRemovable * value of {@code isRemovable} property (as defined in service metadata) * @return {@code this} (for method chaining) */ public Builder isRemovable(Boolean isRemovable) { this.isRemovable = isRemovable; this.changedFields = changedFields.add("isRemovable"); return this; } /** * “When TRUE, indicates that the app should be uninstalled when the device is * removed from Intune. When FALSE, indicates that the app will not be uninstalled * when the device is removed from Intune. By default, property is set to null * which internally is treated as TRUE.” * * @param uninstallOnDeviceRemoval * value of {@code uninstallOnDeviceRemoval} property (as defined in service metadata) * @return {@code this} (for method chaining) */ public Builder uninstallOnDeviceRemoval(Boolean uninstallOnDeviceRemoval) { this.uninstallOnDeviceRemoval = uninstallOnDeviceRemoval; this.changedFields = changedFields.add("uninstallOnDeviceRemoval"); return this; } /** * “This is the unique identifier (Id) of the VPN Configuration to apply to the 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 IosStoreAppAssignmentSettings build() { IosStoreAppAssignmentSettings _x = new IosStoreAppAssignmentSettings(); _x.contextPath = null; _x.unmappedFields = new UnmappedFieldsImpl(); _x.odataType = "microsoft.graph.iosStoreAppAssignmentSettings"; _x.isRemovable = isRemovable; _x.uninstallOnDeviceRemoval = uninstallOnDeviceRemoval; _x.vpnConfigurationId = vpnConfigurationId; return _x; } } private IosStoreAppAssignmentSettings _copy() { IosStoreAppAssignmentSettings _x = new IosStoreAppAssignmentSettings(); _x.contextPath = contextPath; _x.unmappedFields = unmappedFields.copy(); _x.odataType = odataType; _x.isRemovable = isRemovable; _x.uninstallOnDeviceRemoval = uninstallOnDeviceRemoval; _x.vpnConfigurationId = vpnConfigurationId; return _x; } @Override public String toString() { StringBuilder b = new StringBuilder(); b.append("IosStoreAppAssignmentSettings["); b.append("isRemovable="); b.append(this.isRemovable); b.append(", "); b.append("uninstallOnDeviceRemoval="); b.append(this.uninstallOnDeviceRemoval); 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