|
| 1 | +// Template Source: BaseEntity.java.tt |
| 2 | +// ------------------------------------------------------------------------------ |
| 3 | +// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. |
| 4 | +// ------------------------------------------------------------------------------ |
| 5 | + |
| 6 | +package com.microsoft.graph.models; |
| 7 | +import com.microsoft.graph.serializer.ISerializer; |
| 8 | +import com.microsoft.graph.serializer.IJsonBackedObject; |
| 9 | +import com.microsoft.graph.serializer.AdditionalDataManager; |
| 10 | +import java.util.EnumSet; |
| 11 | +import com.microsoft.graph.http.BaseCollectionPage; |
| 12 | +import com.microsoft.graph.models.UserIdentity; |
| 13 | +import com.microsoft.graph.models.AccessReviewHistoryDecisionFilter; |
| 14 | +import com.microsoft.graph.models.AccessReviewScope; |
| 15 | +import com.microsoft.graph.models.AccessReviewHistoryStatus; |
| 16 | +import com.microsoft.graph.models.Entity; |
| 17 | + |
| 18 | + |
| 19 | +import com.google.gson.JsonObject; |
| 20 | +import com.google.gson.annotations.SerializedName; |
| 21 | +import com.google.gson.annotations.Expose; |
| 22 | +import javax.annotation.Nullable; |
| 23 | +import javax.annotation.Nonnull; |
| 24 | + |
| 25 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 26 | + |
| 27 | +/** |
| 28 | + * The class for the Access Review History Definition. |
| 29 | + */ |
| 30 | +public class AccessReviewHistoryDefinition extends Entity implements IJsonBackedObject { |
| 31 | + |
| 32 | + |
| 33 | + /** |
| 34 | + * The Created By. |
| 35 | + * |
| 36 | + */ |
| 37 | + @SerializedName(value = "createdBy", alternate = {"CreatedBy"}) |
| 38 | + @Expose |
| 39 | + @Nullable |
| 40 | + public UserIdentity createdBy; |
| 41 | + |
| 42 | + /** |
| 43 | + * The Created Date Time. |
| 44 | + * |
| 45 | + */ |
| 46 | + @SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"}) |
| 47 | + @Expose |
| 48 | + @Nullable |
| 49 | + public java.time.OffsetDateTime createdDateTime; |
| 50 | + |
| 51 | + /** |
| 52 | + * The Decisions. |
| 53 | + * |
| 54 | + */ |
| 55 | + @SerializedName(value = "decisions", alternate = {"Decisions"}) |
| 56 | + @Expose |
| 57 | + @Nullable |
| 58 | + public java.util.List<AccessReviewHistoryDecisionFilter> decisions; |
| 59 | + |
| 60 | + /** |
| 61 | + * The Display Name. |
| 62 | + * |
| 63 | + */ |
| 64 | + @SerializedName(value = "displayName", alternate = {"DisplayName"}) |
| 65 | + @Expose |
| 66 | + @Nullable |
| 67 | + public String displayName; |
| 68 | + |
| 69 | + /** |
| 70 | + * The Download Uri. |
| 71 | + * |
| 72 | + */ |
| 73 | + @SerializedName(value = "downloadUri", alternate = {"DownloadUri"}) |
| 74 | + @Expose |
| 75 | + @Nullable |
| 76 | + public String downloadUri; |
| 77 | + |
| 78 | + /** |
| 79 | + * The Fulfilled Date Time. |
| 80 | + * |
| 81 | + */ |
| 82 | + @SerializedName(value = "fulfilledDateTime", alternate = {"FulfilledDateTime"}) |
| 83 | + @Expose |
| 84 | + @Nullable |
| 85 | + public java.time.OffsetDateTime fulfilledDateTime; |
| 86 | + |
| 87 | + /** |
| 88 | + * The Review History Period End Date Time. |
| 89 | + * |
| 90 | + */ |
| 91 | + @SerializedName(value = "reviewHistoryPeriodEndDateTime", alternate = {"ReviewHistoryPeriodEndDateTime"}) |
| 92 | + @Expose |
| 93 | + @Nullable |
| 94 | + public java.time.OffsetDateTime reviewHistoryPeriodEndDateTime; |
| 95 | + |
| 96 | + /** |
| 97 | + * The Review History Period Start Date Time. |
| 98 | + * |
| 99 | + */ |
| 100 | + @SerializedName(value = "reviewHistoryPeriodStartDateTime", alternate = {"ReviewHistoryPeriodStartDateTime"}) |
| 101 | + @Expose |
| 102 | + @Nullable |
| 103 | + public java.time.OffsetDateTime reviewHistoryPeriodStartDateTime; |
| 104 | + |
| 105 | + /** |
| 106 | + * The Scopes. |
| 107 | + * |
| 108 | + */ |
| 109 | + @SerializedName(value = "scopes", alternate = {"Scopes"}) |
| 110 | + @Expose |
| 111 | + @Nullable |
| 112 | + public java.util.List<AccessReviewScope> scopes; |
| 113 | + |
| 114 | + /** |
| 115 | + * The Status. |
| 116 | + * |
| 117 | + */ |
| 118 | + @SerializedName(value = "status", alternate = {"Status"}) |
| 119 | + @Expose |
| 120 | + @Nullable |
| 121 | + public AccessReviewHistoryStatus status; |
| 122 | + |
| 123 | + |
| 124 | + /** |
| 125 | + * Sets the raw JSON object |
| 126 | + * |
| 127 | + * @param serializer the serializer |
| 128 | + * @param json the JSON object to set this object to |
| 129 | + */ |
| 130 | + public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { |
| 131 | + |
| 132 | + } |
| 133 | +} |
0 commit comments