/*******************************************************************************
**NOTE** This code was generated by a tool and will occasionally be
overwritten. We welcome comments and issues regarding this code; they will be
addressed in the generation tool. If you wish to submit pull requests, please
do so for the templates in that tool.
This code was generated by Vipr (https://github.com/microsoft/vipr) using
the T4TemplateWriter (https://github.com/msopentech/vipr-t4templatewriter).
Copyright (c) Microsoft Open Technologies, Inc. All Rights Reserved.
Licensed under the Apache License 2.0; see LICENSE in the source repository
root for authoritative license information.
******************************************************************************/
package com.microsoft.services.graph;
import com.microsoft.services.orc.core.ODataBaseEntity;
/**
* The type License Units Detail.
*/
public class LicenseUnitsDetail extends ODataBaseEntity {
public LicenseUnitsDetail(){
setODataType("#Microsoft.Graph.LicenseUnitsDetail");
}
private Integer enabled;
/**
* Gets the enabled.
*
* @return the Integer
*/
public Integer getEnabled() {
return this.enabled;
}
/**
* Sets the enabled.
*
* @param value the Integer
*/
public void setEnabled(Integer value) {
this.enabled = value;
valueChanged("enabled", value);
}
private Integer suspended;
/**
* Gets the suspended.
*
* @return the Integer
*/
public Integer getSuspended() {
return this.suspended;
}
/**
* Sets the suspended.
*
* @param value the Integer
*/
public void setSuspended(Integer value) {
this.suspended = value;
valueChanged("suspended", value);
}
private Integer warning;
/**
* Gets the warning.
*
* @return the Integer
*/
public Integer getWarning() {
return this.warning;
}
/**
* Sets the warning.
*
* @param value the Integer
*/
public void setWarning(Integer value) {
this.warning = value;
valueChanged("warning", value);
}
}