|
4 | 4 |
|
5 | 5 | package com.microsoft.graph.models.extensions; |
6 | 6 |
|
7 | | -import com.microsoft.graph.concurrency.*; |
8 | | -import com.microsoft.graph.core.*; |
9 | | -import com.microsoft.graph.models.extensions.*; |
10 | | -import com.microsoft.graph.models.generated.*; |
11 | | -import com.microsoft.graph.http.*; |
12 | | -import com.microsoft.graph.requests.extensions.*; |
13 | | -import com.microsoft.graph.requests.generated.*; |
14 | | -import com.microsoft.graph.options.*; |
15 | | -import com.microsoft.graph.serializer.*; |
16 | | - |
17 | | -import java.util.Arrays; |
18 | | -import java.util.EnumSet; |
| 7 | +import com.google.gson.annotations.Expose; |
| 8 | +import com.google.gson.annotations.SerializedName; |
| 9 | +import com.microsoft.graph.models.generated.BasePlannerAppliedCategories; |
19 | 10 |
|
20 | 11 | // This file is available for extending, afterwards please submit a pull request. |
21 | 12 |
|
22 | 13 | /** |
23 | 14 | * The class for the Planner Applied Categories. |
24 | 15 | */ |
25 | 16 | public class PlannerAppliedCategories extends BasePlannerAppliedCategories { |
26 | | - |
| 17 | + /** |
| 18 | + * The Category1 |
| 19 | + */ |
| 20 | + @SerializedName("category1") |
| 21 | + @Expose |
| 22 | + public boolean category1; |
| 23 | + |
| 24 | + /** |
| 25 | + * The Category1 |
| 26 | + */ |
| 27 | + @SerializedName("category2") |
| 28 | + @Expose |
| 29 | + public boolean category2; |
| 30 | + |
| 31 | + /** |
| 32 | + * The Category1 |
| 33 | + */ |
| 34 | + @SerializedName("category3") |
| 35 | + @Expose |
| 36 | + public boolean category3; |
| 37 | + |
| 38 | + /** |
| 39 | + * The Category1 |
| 40 | + */ |
| 41 | + @SerializedName("category4") |
| 42 | + @Expose |
| 43 | + public boolean category4; |
| 44 | + |
| 45 | + /** |
| 46 | + * The Category1 |
| 47 | + */ |
| 48 | + @SerializedName("category5") |
| 49 | + @Expose |
| 50 | + public boolean category5; |
| 51 | + |
| 52 | + /** |
| 53 | + * The Category1 |
| 54 | + */ |
| 55 | + @SerializedName("category6") |
| 56 | + @Expose |
| 57 | + public boolean category6; |
27 | 58 | } |
0 commit comments