Package com.microsoft.graph.models
Class AccessPackageAssignment
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AccessPackageAssignment
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AccessPackageAssignment
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Access Package Assignment.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Access Package.The Assignment Policy.The Custom Extension Callout Instances.The Expired Date Time.The Schedule.The State.The Status.The Target. -
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
-
customExtensionCalloutInstances
@SerializedName(value="customExtensionCalloutInstances", alternate="CustomExtensionCalloutInstances") @Expose @Nullable public List<CustomExtensionCalloutInstance> customExtensionCalloutInstancesThe Custom Extension Callout Instances. Information about all the custom extension calls that were made during the access package assignment workflow. -
expiredDateTime
@SerializedName(value="expiredDateTime", alternate="ExpiredDateTime") @Expose @Nullable public OffsetDateTime expiredDateTimeThe Expired Date Time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. -
schedule
@SerializedName(value="schedule", alternate="Schedule") @Expose @Nullable public EntitlementManagementSchedule scheduleThe Schedule. When the access assignment is to be in place. Read-only. -
state
@SerializedName(value="state", alternate="State") @Expose @Nullable public AccessPackageAssignmentState stateThe State. The state of the access package assignment. The possible values are: delivering, partiallyDelivered, delivered, expired, deliveryFailed, unknownFutureValue. Read-only. Supports $filter (eq). -
status
The Status. More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only. -
accessPackage
@SerializedName(value="accessPackage", alternate="AccessPackage") @Expose @Nullable public AccessPackage accessPackageThe Access Package. Read-only. Nullable. Supports $filter (eq) on the id property and $expand query parameters. -
assignmentPolicy
@SerializedName(value="assignmentPolicy", alternate="AssignmentPolicy") @Expose @Nullable public AccessPackageAssignmentPolicy assignmentPolicyThe Assignment Policy. Read-only. Supports $filter (eq) on the id property and $expand query parameters. -
target
@SerializedName(value="target", alternate="Target") @Expose @Nullable public AccessPackageSubject targetThe Target. The subject of the access package assignment. Read-only. Nullable. Supports $expand. Supports $filter (eq) on objectId.
-
-
Constructor Details
-
AccessPackageAssignment
public AccessPackageAssignment()
-
-
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
-