|
| 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.industrydata.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.industrydata.models.IndustryDataRunRoleCountMetric; |
| 13 | + |
| 14 | + |
| 15 | +import com.google.gson.JsonObject; |
| 16 | +import com.google.gson.annotations.SerializedName; |
| 17 | +import com.google.gson.annotations.Expose; |
| 18 | +import javax.annotation.Nullable; |
| 19 | +import javax.annotation.Nonnull; |
| 20 | + |
| 21 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 22 | + |
| 23 | +/** |
| 24 | + * The class for the Aggregated Inbound Statistics. |
| 25 | + */ |
| 26 | +public class AggregatedInboundStatistics implements IJsonBackedObject { |
| 27 | + |
| 28 | + /** the OData type of the object as returned by the service */ |
| 29 | + @SerializedName("@odata.type") |
| 30 | + @Expose |
| 31 | + @Nullable |
| 32 | + public String oDataType; |
| 33 | + |
| 34 | + private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this); |
| 35 | + |
| 36 | + @Override |
| 37 | + @Nonnull |
| 38 | + public final AdditionalDataManager additionalDataManager() { |
| 39 | + return additionalDataManager; |
| 40 | + } |
| 41 | + |
| 42 | + /** |
| 43 | + * The Errors. |
| 44 | + * The aggregate count of errors encountered by activities during this run. |
| 45 | + */ |
| 46 | + @SerializedName(value = "errors", alternate = {"Errors"}) |
| 47 | + @Expose |
| 48 | + @Nullable |
| 49 | + public Integer errors; |
| 50 | + |
| 51 | + /** |
| 52 | + * The Groups. |
| 53 | + * The aggregate count of active inbound groups processed during the run. |
| 54 | + */ |
| 55 | + @SerializedName(value = "groups", alternate = {"Groups"}) |
| 56 | + @Expose |
| 57 | + @Nullable |
| 58 | + public Integer groups; |
| 59 | + |
| 60 | + /** |
| 61 | + * The Matched People By Role. |
| 62 | + * The aggregate count of active people matched to an Azure Active Directory user, by role. |
| 63 | + */ |
| 64 | + @SerializedName(value = "matchedPeopleByRole", alternate = {"MatchedPeopleByRole"}) |
| 65 | + @Expose |
| 66 | + @Nullable |
| 67 | + public java.util.List<IndustryDataRunRoleCountMetric> matchedPeopleByRole; |
| 68 | + |
| 69 | + /** |
| 70 | + * The Memberships. |
| 71 | + * The aggregate count of active inbound memberships processed during the run. |
| 72 | + */ |
| 73 | + @SerializedName(value = "memberships", alternate = {"Memberships"}) |
| 74 | + @Expose |
| 75 | + @Nullable |
| 76 | + public Integer memberships; |
| 77 | + |
| 78 | + /** |
| 79 | + * The Organizations. |
| 80 | + * The aggregate count of active inbound organizations processed during the run. |
| 81 | + */ |
| 82 | + @SerializedName(value = "organizations", alternate = {"Organizations"}) |
| 83 | + @Expose |
| 84 | + @Nullable |
| 85 | + public Integer organizations; |
| 86 | + |
| 87 | + /** |
| 88 | + * The People. |
| 89 | + * The aggregate count of active inbound people processed during the run. |
| 90 | + */ |
| 91 | + @SerializedName(value = "people", alternate = {"People"}) |
| 92 | + @Expose |
| 93 | + @Nullable |
| 94 | + public Integer people; |
| 95 | + |
| 96 | + /** |
| 97 | + * The Unmatched People By Role. |
| 98 | + * The aggregate count of active people not matched to an Azure Active Directory user, by role. |
| 99 | + */ |
| 100 | + @SerializedName(value = "unmatchedPeopleByRole", alternate = {"UnmatchedPeopleByRole"}) |
| 101 | + @Expose |
| 102 | + @Nullable |
| 103 | + public java.util.List<IndustryDataRunRoleCountMetric> unmatchedPeopleByRole; |
| 104 | + |
| 105 | + /** |
| 106 | + * The Warnings. |
| 107 | + * The aggregate count of warnings generated by activities during this run. |
| 108 | + */ |
| 109 | + @SerializedName(value = "warnings", alternate = {"Warnings"}) |
| 110 | + @Expose |
| 111 | + @Nullable |
| 112 | + public Integer warnings; |
| 113 | + |
| 114 | + |
| 115 | + /** |
| 116 | + * Sets the raw JSON object |
| 117 | + * |
| 118 | + * @param serializer the serializer |
| 119 | + * @param json the JSON object to set this object to |
| 120 | + */ |
| 121 | + public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { |
| 122 | + |
| 123 | + } |
| 124 | +} |
0 commit comments