com.microsoft.graph.models.AccessPackageAssignmentWorkflowExtension 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.models.CustomExtensionCallbackConfiguration;
import com.microsoft.graph.models.CustomCalloutExtension;
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 Workflow Extension.
*/
public class AccessPackageAssignmentWorkflowExtension extends CustomCalloutExtension implements IJsonBackedObject {
/**
* The Callback Configuration.
* The callback configuration for a custom extension.
*/
@SerializedName(value = "callbackConfiguration", alternate = {"CallbackConfiguration"})
@Expose
@Nullable
public CustomExtensionCallbackConfiguration callbackConfiguration;
/**
* The Created By.
* The userPrincipalName of the user or identity of the subject that created this resource. Read-only.
*/
@SerializedName(value = "createdBy", alternate = {"CreatedBy"})
@Expose
@Nullable
public String createdBy;
/**
* The Created Date Time.
* When the entity was created.
*/
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
@Expose
@Nullable
public java.time.OffsetDateTime createdDateTime;
/**
* The Last Modified By.
* The userPrincipalName of the identity that last modified the entity.
*/
@SerializedName(value = "lastModifiedBy", alternate = {"LastModifiedBy"})
@Expose
@Nullable
public String lastModifiedBy;
/**
* The Last Modified Date Time.
* When the entity was last modified.
*/
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
@Expose
@Nullable
public java.time.OffsetDateTime lastModifiedDateTime;
/**
* 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) {
}
}