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 Account Id.The Account Name.The Applies To.The Capability Status.The Consumed Units.The Prepaid Units.The Service Plans.The Sku Id.The Sku Part Number.The Subscription Ids. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
accountId
The Account Id. -
accountName
@SerializedName(value="accountName", alternate="AccountName") @Expose @Nullable public String accountNameThe Account Name. -
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. -
subscriptionIds
@SerializedName(value="subscriptionIds", alternate="SubscriptionIds") @Expose @Nullable public List<String> subscriptionIdsThe Subscription Ids.
-
-
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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-