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

com.microsoft.store.partnercenter.models.devicesdeployment.DevicePolicyUpdateRequest Maven / Gradle / Ivy

// -----------------------------------------------------------------------
// 
//      Copyright (c) Microsoft Corporation. All rights reserved.
// 
// -----------------------------------------------------------------------

package com.microsoft.store.partnercenter.models.devicesdeployment;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.store.partnercenter.models.ResourceBase;

/**
 * Represents the list of devices to be updated with a policy.
 */
public class DevicePolicyUpdateRequest extends ResourceBase {
	/**
	 * Gets or sets the list of devices to be updated.
	 */
	@JsonProperty( "devices" )
	private List __Devices;

	public List getSetDevices()
	{
		return __Devices;
	}

	public void setDevices( List value )
	{
		__Devices = value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy