Package com.microsoft.graph.models
Class SubscribedSku
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.SubscribedSku
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SubscribedSku
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Subscribed Sku.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Applies To.The Capability Status.The Consumed Units.The Prepaid Units.The Service Plans.The Sku Id.The Sku Part Number. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
appliesTo
The Applies To. For example, 'User' or 'Company'. -
capabilityStatus
@SerializedName(value="capabilityStatus", alternate="CapabilityStatus") @Expose @Nullable public String capabilityStatusThe Capability Status. Possible values are: Enabled, Warning, Suspended, Deleted, LockedOut. The capabilityStatus is Enabled if the prepaidUnits property has at least 1 unit that is enabled, and LockedOut if the customer cancelled their subscription. -
consumedUnits
@SerializedName(value="consumedUnits", alternate="ConsumedUnits") @Expose @Nullable public Integer consumedUnitsThe Consumed Units. The number of licenses that have been assigned. -
prepaidUnits
@SerializedName(value="prepaidUnits", alternate="PrepaidUnits") @Expose @Nullable public LicenseUnitsDetail prepaidUnitsThe Prepaid Units. Information about the number and status of prepaid licenses. -
servicePlans
@SerializedName(value="servicePlans", alternate="ServicePlans") @Expose @Nullable public List<ServicePlanInfo> servicePlansThe Service Plans. Information about the service plans that are available with the SKU. Not nullable -
skuId
The Sku Id. The unique identifier (GUID) for the service SKU. -
skuPartNumber
@SerializedName(value="skuPartNumber", alternate="SkuPartNumber") @Expose @Nullable public String skuPartNumberThe Sku Part Number. The SKU part number; for example: 'AAD_PREMIUM' or 'RMSBASIC'. To get a list of commercial subscriptions that an organization has acquired, see List subscribedSkus.
-
-
Constructor Details
-
SubscribedSku
public SubscribedSku()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-