com.microsoft.graph.models.AccessPackageAssignment Maven / Gradle / Ivy
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.CustomExtensionCalloutInstance;
import com.microsoft.graph.models.EntitlementManagementSchedule;
import com.microsoft.graph.models.AccessPackageAssignmentState;
import com.microsoft.graph.models.AccessPackage;
import com.microsoft.graph.models.AccessPackageAssignmentPolicy;
import com.microsoft.graph.models.AccessPackageSubject;
import com.microsoft.graph.models.Entity;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Access Package Assignment.
*/
public class AccessPackageAssignment extends Entity implements IJsonBackedObject {
/**
* The Custom Extension Callout Instances.
* Information about all the custom extension calls that were made during the access package assignment workflow.
*/
@SerializedName(value = "customExtensionCalloutInstances", alternate = {"CustomExtensionCalloutInstances"})
@Expose
@Nullable
public java.util.List customExtensionCalloutInstances;
/**
* The 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.
*/
@SerializedName(value = "expiredDateTime", alternate = {"ExpiredDateTime"})
@Expose
@Nullable
public java.time.OffsetDateTime expiredDateTime;
/**
* The Schedule.
* When the access assignment is to be in place. Read-only.
*/
@SerializedName(value = "schedule", alternate = {"Schedule"})
@Expose
@Nullable
public EntitlementManagementSchedule schedule;
/**
* The State.
* The state of the access package assignment. The possible values are: delivering, partiallyDelivered, delivered, expired, deliveryFailed, unknownFutureValue. Read-only. Supports $filter (eq).
*/
@SerializedName(value = "state", alternate = {"State"})
@Expose
@Nullable
public AccessPackageAssignmentState state;
/**
* The Status.
* More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.
*/
@SerializedName(value = "status", alternate = {"Status"})
@Expose
@Nullable
public String status;
/**
* The Access Package.
* Read-only. Nullable. Supports $filter (eq) on the id property and $expand query parameters.
*/
@SerializedName(value = "accessPackage", alternate = {"AccessPackage"})
@Expose
@Nullable
public AccessPackage accessPackage;
/**
* The Assignment Policy.
* Read-only. Supports $filter (eq) on the id property and $expand query parameters.
*/
@SerializedName(value = "assignmentPolicy", alternate = {"AssignmentPolicy"})
@Expose
@Nullable
public AccessPackageAssignmentPolicy assignmentPolicy;
/**
* The Target.
* The subject of the access package assignment. Read-only. Nullable. Supports $expand. Supports $filter (eq) on objectId.
*/
@SerializedName(value = "target", alternate = {"Target"})
@Expose
@Nullable
public AccessPackageSubject target;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}