com.microsoft.graph.models.AuditActor 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.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 Audit Actor.
*/
public class AuditActor implements IJsonBackedObject {
/** the OData type of the object as returned by the service */
@SerializedName("@odata.type")
@Expose
@Nullable
public String oDataType;
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
@Override
@Nonnull
public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}
/**
* The Application Display Name.
* Name of the Application.
*/
@SerializedName(value = "applicationDisplayName", alternate = {"ApplicationDisplayName"})
@Expose
@Nullable
public String applicationDisplayName;
/**
* The Application Id.
* AAD Application Id.
*/
@SerializedName(value = "applicationId", alternate = {"ApplicationId"})
@Expose
@Nullable
public String applicationId;
/**
* The Audit Actor Type.
* Actor Type.
*/
@SerializedName(value = "auditActorType", alternate = {"AuditActorType"})
@Expose
@Nullable
public String auditActorType;
/**
* The Ip Address.
* IPAddress.
*/
@SerializedName(value = "ipAddress", alternate = {"IpAddress"})
@Expose
@Nullable
public String ipAddress;
/**
* The Service Principal Name.
* Service Principal Name (SPN).
*/
@SerializedName(value = "servicePrincipalName", alternate = {"ServicePrincipalName"})
@Expose
@Nullable
public String servicePrincipalName;
/**
* The User Id.
* User Id.
*/
@SerializedName(value = "userId", alternate = {"UserId"})
@Expose
@Nullable
public String userId;
/**
* The User Permissions.
* List of user permissions when the audit was performed.
*/
@SerializedName(value = "userPermissions", alternate = {"UserPermissions"})
@Expose
@Nullable
public java.util.List userPermissions;
/**
* The User Principal Name.
* User Principal Name (UPN).
*/
@SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"})
@Expose
@Nullable
public String userPrincipalName;
/**
* 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) {
}
}