|
| 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.managedtenants.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.models.Entity; |
| 12 | + |
| 13 | + |
| 14 | +import com.google.gson.JsonObject; |
| 15 | +import com.google.gson.annotations.SerializedName; |
| 16 | +import com.google.gson.annotations.Expose; |
| 17 | +import javax.annotation.Nullable; |
| 18 | +import javax.annotation.Nonnull; |
| 19 | + |
| 20 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 21 | + |
| 22 | +/** |
| 23 | + * The class for the App Performance. |
| 24 | + */ |
| 25 | +public class AppPerformance extends Entity implements IJsonBackedObject { |
| 26 | + |
| 27 | + |
| 28 | + /** |
| 29 | + * The App Friendly Name. |
| 30 | + * |
| 31 | + */ |
| 32 | + @SerializedName(value = "appFriendlyName", alternate = {"AppFriendlyName"}) |
| 33 | + @Expose |
| 34 | + @Nullable |
| 35 | + public String appFriendlyName; |
| 36 | + |
| 37 | + /** |
| 38 | + * The App Name. |
| 39 | + * |
| 40 | + */ |
| 41 | + @SerializedName(value = "appName", alternate = {"AppName"}) |
| 42 | + @Expose |
| 43 | + @Nullable |
| 44 | + public String appName; |
| 45 | + |
| 46 | + /** |
| 47 | + * The App Publisher. |
| 48 | + * |
| 49 | + */ |
| 50 | + @SerializedName(value = "appPublisher", alternate = {"AppPublisher"}) |
| 51 | + @Expose |
| 52 | + @Nullable |
| 53 | + public String appPublisher; |
| 54 | + |
| 55 | + /** |
| 56 | + * The Last Updated Date Time. |
| 57 | + * |
| 58 | + */ |
| 59 | + @SerializedName(value = "lastUpdatedDateTime", alternate = {"LastUpdatedDateTime"}) |
| 60 | + @Expose |
| 61 | + @Nullable |
| 62 | + public java.time.OffsetDateTime lastUpdatedDateTime; |
| 63 | + |
| 64 | + /** |
| 65 | + * The Mean Time To Failure In Minutes. |
| 66 | + * |
| 67 | + */ |
| 68 | + @SerializedName(value = "meanTimeToFailureInMinutes", alternate = {"MeanTimeToFailureInMinutes"}) |
| 69 | + @Expose |
| 70 | + @Nullable |
| 71 | + public Integer meanTimeToFailureInMinutes; |
| 72 | + |
| 73 | + /** |
| 74 | + * The Tenant Display Name. |
| 75 | + * |
| 76 | + */ |
| 77 | + @SerializedName(value = "tenantDisplayName", alternate = {"TenantDisplayName"}) |
| 78 | + @Expose |
| 79 | + @Nullable |
| 80 | + public String tenantDisplayName; |
| 81 | + |
| 82 | + /** |
| 83 | + * The Tenant Id. |
| 84 | + * |
| 85 | + */ |
| 86 | + @SerializedName(value = "tenantId", alternate = {"TenantId"}) |
| 87 | + @Expose |
| 88 | + @Nullable |
| 89 | + public String tenantId; |
| 90 | + |
| 91 | + /** |
| 92 | + * The Total Active Device Count. |
| 93 | + * |
| 94 | + */ |
| 95 | + @SerializedName(value = "totalActiveDeviceCount", alternate = {"TotalActiveDeviceCount"}) |
| 96 | + @Expose |
| 97 | + @Nullable |
| 98 | + public Integer totalActiveDeviceCount; |
| 99 | + |
| 100 | + /** |
| 101 | + * The Total App Crash Count. |
| 102 | + * |
| 103 | + */ |
| 104 | + @SerializedName(value = "totalAppCrashCount", alternate = {"TotalAppCrashCount"}) |
| 105 | + @Expose |
| 106 | + @Nullable |
| 107 | + public Integer totalAppCrashCount; |
| 108 | + |
| 109 | + /** |
| 110 | + * The Total App Freeze Count. |
| 111 | + * |
| 112 | + */ |
| 113 | + @SerializedName(value = "totalAppFreezeCount", alternate = {"TotalAppFreezeCount"}) |
| 114 | + @Expose |
| 115 | + @Nullable |
| 116 | + public Integer totalAppFreezeCount; |
| 117 | + |
| 118 | + |
| 119 | + /** |
| 120 | + * Sets the raw JSON object |
| 121 | + * |
| 122 | + * @param serializer the serializer |
| 123 | + * @param json the JSON object to set this object to |
| 124 | + */ |
| 125 | + public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { |
| 126 | + |
| 127 | + } |
| 128 | +} |
0 commit comments