com.microsoft.graph.models.TargetResource 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.GroupType;
import com.microsoft.graph.models.ModifiedProperty;
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 Target Resource.
*/
public class TargetResource 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 Display Name.
* Indicates the visible name defined for the resource. Typically specified when the resource is created.
*/
@SerializedName(value = "displayName", alternate = {"DisplayName"})
@Expose
@Nullable
public String displayName;
/**
* The Group Type.
* When type is set to Group, this indicates the group type. Possible values are: unifiedGroups, azureAD, and unknownFutureValue
*/
@SerializedName(value = "groupType", alternate = {"GroupType"})
@Expose
@Nullable
public GroupType groupType;
/**
* The Id.
* Indicates the unique ID of the resource.
*/
@SerializedName(value = "id", alternate = {"Id"})
@Expose
@Nullable
public String id;
/**
* The Modified Properties.
* Indicates name, old value and new value of each attribute that changed. Property values depend on the operation type.
*/
@SerializedName(value = "modifiedProperties", alternate = {"ModifiedProperties"})
@Expose
@Nullable
public java.util.List modifiedProperties;
/**
* The Type.
* Describes the resource type. Example values include Application, Group, ServicePrincipal, and User.
*/
@SerializedName(value = "type", alternate = {"Type"})
@Expose
@Nullable
public String type;
/**
* The User Principal Name.
* When type is set to User, this includes the user name that initiated the action; null for other types.
*/
@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) {
}
}